]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gdc.test/compilable/ddoc2273.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / ddoc2273.d
CommitLineData
b4c522fa
IB
1// PERMUTE_ARGS:
2// REQUIRED_ARGS: -D -Dd${RESULTS_DIR}/compilable -o-
5fee5ec3 3// POST_SCRIPT: compilable/extra-files/ddocAny-postscript.sh
b4c522fa
IB
4// REQUIRED_ARGS: -m32
5
6module ddoc2273;
7
8interface A { }
9
10interface C { }
11interface D { }
12
13///
14interface B : C, D { }
15
16///
17class Foo : A, B { }
18
19///
20MinType!(T1, T2, T) min(T1, T2, T...)(T1 a, T2 b, T xs) { }
21
22///
23Templ!([1, 2, 3]) max(T...)() { }
24
25///
26template Base64Impl(char Map62th, char Map63th, char Padding) { }
27
28///
29int sqlite3_config(int,...);
30
31template staticIndexOf(T, TList...) { alias int staticIndexOf; }
32
33///
34alias staticIndexOf IndexOf;
35
36void main() { }
37