]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/runnable/imports/test11931b.d
Add D front-end, libphobos library, and D2 testsuite.
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / runnable / imports / test11931b.d
1 module imports.test11931b;
2
3 import imports.test11931c;
4 import imports.test11931d;
5
6 class GUIElement
7 {
8 public:
9 Signal!void onSubmit;
10 }
11
12 mixin template GUIManager()
13 {
14 public:
15 void foo()
16 {
17 onLeftUp.add(&guiUp);
18 }
19
20 void guiUp() {}
21 }