mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
15 lines
234 B
D
15 lines
234 B
D
module three;
|
|
|
|
void aaa() @nogc
|
|
{
|
|
|
|
}
|
|
|
|
struct TT(T)
|
|
{
|
|
void insertabcdefg(T) // @nogc <-- deduction problem
|
|
{
|
|
//static assert(insertabcdefg.mangleof == "_D5three__T2TTTiZQg13insertabcdefgMFiZv");
|
|
aaa();
|
|
}
|
|
}
|