mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
14 lines
182 B
D
14 lines
182 B
D
/*
|
|
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;
|
|
}
|