d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / test22329.d
blob25c83f5142d6a8029b54647e5bd395d0706b18c7
1 // https://issues.dlang.org/show_bug.cgi?id=22329
2 // EXTRA_FILES: imports/imp22329.d
3 /*
4 TEST_OUTPUT:
5 ---
6 fail_compilation/imports/imp22329.d(3): Error: no property `values` for type `test22329.Foo`
7 fail_compilation/test22329.d(13): struct `Foo` defined here
8 fail_compilation/imports/imp22329.d(3): Error: incompatible types for `(arg) + (1)`: `Foo` and `int`
9 fail_compilation/test22329.d(21): Error: template instance `imp22329.func!(Foo)` error instantiating
10 ---
13 public struct Foo {
14 private int values;
15 alias values this;
18 void main()
20 import imports.imp22329 : func;
21 func(Foo());