d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / ice11919.d
blobe6b4f7088464c8aaf22196f52b0a8a61e497904b
1 /*
2 EXTRA_FILES: imports/a11919.d
3 TEST_OUTPUT:
4 ---
5 fail_compilation/ice11919.d(18): Error: initializer must be an expression, not `foo`
6 fail_compilation/imports/a11919.d(4): Error: template instance `a11919.doBar!(Foo).doBar.zoo!(t)` error instantiating
7 fail_compilation/imports/a11919.d(11): instantiated from here: `doBar!(Foo)`
8 fail_compilation/ice11919.d(26): instantiated from here: `doBar!(Bar)`
9 ---
12 import imports.a11919;
14 enum foo;
16 class Foo
18 @foo bool _foo;
21 class Bar : Foo {}
23 void main()
25 auto bar = new Bar();
26 bar.doBar;