mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
19 lines
187 B
D
19 lines
187 B
D
// REQUIRED_ARGS: -o-
|
|
|
|
void main(string[] args)
|
|
{
|
|
immutable int a;
|
|
immutable int b;
|
|
S!a sa;
|
|
S!b sb;
|
|
C!a ca;
|
|
C!b cb;
|
|
}
|
|
|
|
struct S(alias a)
|
|
{
|
|
}
|
|
|
|
class C(alias a)
|
|
{
|
|
}
|