d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail21275.d
blobb7bbcfa62500dca6abc01675a9f9dc897dbdf703
1 // https://issues.dlang.org/show_bug.cgi?id=21275
2 // EXTRA_FILES: imports/fail21275a.d
4 /*
5 TEST_OUTPUT:
6 ---
7 fail_compilation/fail21275.d(17): Error: function `imports.fail21275a.Foo.x` of type `ref int() return` is not accessible from module `fail21275`
8 fail_compilation/fail21275.d(20): Error: function `imports.fail21275a.Bar.x` of type `int(int)` is not accessible from module `fail21275`
9 ---
12 void main()
14 import imports.fail21275a;
16 auto f = Foo();
17 f.x = 3;
19 auto b = Bar();
20 b.x = 3;