mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
15 lines
158 B
D
15 lines
158 B
D
// https://issues.dlang.org/show_bug.cgi?id=22760
|
|
|
|
extern(C++) void f(T)(T)
|
|
{
|
|
}
|
|
struct S1(T)
|
|
{
|
|
struct S2
|
|
{
|
|
}
|
|
}
|
|
void fun()
|
|
{
|
|
f(S1!int.S2());
|
|
}
|