dmd/compiler/test/compilable/test15802.d
2022-07-09 18:53:07 +02:00

10 lines
126 B
D

extern(C++) {
template Foo(T) {
static int boo();
}
}
void main()
{
string s = Foo!(int).boo.mangleof;
}