mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
13 lines
129 B
D
13 lines
129 B
D
// REQUIRED_ARGS: -vtls
|
|
// PERMUTE_ARGS:
|
|
template T()
|
|
{
|
|
static this() {}
|
|
}
|
|
|
|
class C
|
|
{
|
|
alias ti = T!();
|
|
}
|
|
|
|
void main() {}
|