mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
10 lines
126 B
D
10 lines
126 B
D
extern(C++) {
|
|
template Foo(T) {
|
|
static int boo();
|
|
}
|
|
}
|
|
|
|
void main()
|
|
{
|
|
string s = Foo!(int).boo.mangleof;
|
|
}
|