Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail47.d
blob: c45a99031b548958973271db5f00eeec788603b9 [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/fail47.d(8): Error: variable `fail47._foo` is aliased to a function
---
*/
void
foo
()
{}
int
_foo
;
alias
_foo foo
;
void
main
()
{
foo
=
1
;
}