blob: 1800cd065b763a9b50d117b8efdfd75e97ead346 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail335.d(9): Error: cannot overload both property and non-property functions
---
*/
void foo();
@property void foo(int);
void main()
{
foo(1);
}