mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
36 lines
603 B
D
36 lines
603 B
D
// PERMUTE_ARGS:
|
|
// REQUIRED_ARGS: -D -Dd${RESULTS_DIR}/compilable -o-
|
|
// POST_SCRIPT: compilable/extra-files/ddocAny-postscript.sh
|
|
// REQUIRED_ARGS: -m32
|
|
|
|
module ddoc2273;
|
|
|
|
interface A { }
|
|
|
|
interface C { }
|
|
interface D { }
|
|
|
|
///
|
|
interface B : C, D { }
|
|
|
|
///
|
|
class Foo : A, B { }
|
|
|
|
///
|
|
MinType!(T1, T2, T) min(T1, T2, T...)(T1 a, T2 b, T xs) { }
|
|
|
|
///
|
|
Templ!([1, 2, 3]) max(T...)() { }
|
|
|
|
///
|
|
template Base64Impl(char Map62th, char Map63th, char Padding) { }
|
|
|
|
///
|
|
int sqlite3_config(int,...);
|
|
|
|
template staticIndexOf(T, TList...) { alias int staticIndexOf; }
|
|
|
|
///
|
|
alias staticIndexOf IndexOf;
|
|
|
|
void main() { }
|