mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
10 lines
184 B
D
10 lines
184 B
D
// https://issues.dlang.org/show_bug.cgi?id=20388
|
|
|
|
void main() {
|
|
foo!(mixin("(int a) { return a; }"))();
|
|
foo!(mixin("1+1"))();
|
|
foo!(mixin(0))();
|
|
}
|
|
|
|
void foo(alias t)() {
|
|
}
|