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