mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
20 lines
181 B
D
20 lines
181 B
D
class C15464
|
|
{
|
|
static immutable field = 0;
|
|
}
|
|
|
|
struct S15464
|
|
{
|
|
this(int i)
|
|
{
|
|
}
|
|
}
|
|
|
|
void issue15464(T)() @S15464(T.field)
|
|
{
|
|
}
|
|
|
|
void main()
|
|
{
|
|
issue15464!C15464();
|
|
}
|