d: Merge upstream dmd 568496d5b, druntime 178c44ff, phobos 574bf883b.
[official-gcc.git] / gcc / testsuite / gdc.test / compilable / a3682.d
blob4be63a35525c2256202d32965b57c9dfc2f94c9c
1 // COMPILED_IMPORTS: imports/b3682.d
2 // PERMUTE_ARGS:
4 // https://issues.dlang.org/show_bug.cgi?id=3682
6 struct Tuple(Types...)
8 Tuple!(Types[0..1]) slice()()
10 Tuple!(Types[0..1]) x;
11 return x;
14 void fail()
16 Tuple!(float, double, int) a;
17 auto s = a.slice();
18 static assert(is(typeof(s) == Tuple!(float)));