mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
14 lines
208 B
D
14 lines
208 B
D
|
|
class A {}
|
|
interface B {}
|
|
interface C {}
|
|
interface D(X) {}
|
|
|
|
void fun()
|
|
{
|
|
class T : typeof(new A), .B, const(C), D!int {}
|
|
version(none)
|
|
{
|
|
class U : int, float, __vector(int[3]) {}
|
|
}
|
|
}
|