mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
9 lines
223 B
D
9 lines
223 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/template_decl.d(8): Error: `{` expected after template parameter list, not `(`
|
|
fail_compilation/template_decl.d(8): Error: declaration expected, not `)`
|
|
---
|
|
*/
|
|
template b(alias d)() {
|
|
}
|