]> gcc.gnu.org Git - gcc.git/blob - gcc/testsuite/gdc.test/compilable/imports/imp12242b.d
Add D front-end, libphobos library, and D2 testsuite.
[gcc.git] / gcc / testsuite / gdc.test / compilable / imports / imp12242b.d
1 module imports.imp12242b;
2
3 public:
4 import imports.imp12242b1; // std.string
5 import imports.imp12242b2; // std.algorithm
6
7
8 private mixin template MixTmp(T, int x)
9 {
10 template foo(U) if (is(U == T))
11 {
12 enum foo = x;
13 }
14 }
15
16 mixin MixTmp!(float, 3);
17 mixin MixTmp!(real, 4);
This page took 0.038322 seconds and 5 git commands to generate.