d: Merge upstream dmd 568496d5b, druntime 178c44ff, phobos 574bf883b.
[official-gcc.git] / gcc / testsuite / gdc.test / compilable / test18775.d
blob9cf1b3ed163f086b734f0b335651d7c9adc85c15
1 // REQUIRED_ARGS: -de
3 struct Foo { }
5 struct Bar {
6 deprecated
7 @property Foo foo() { return Foo.init; }
9 alias foo this;
12 void test(Bar bar) { }
14 void main()
16 Bar bar;
18 // test lookup will be satisfied via ufcs, not alias, so it must not deprecation warn foo!
19 bar.test;