mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
11 lines
439 B
D
11 lines
439 B
D
/**
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/diag_template_alias.d(1): Error: identifier expected for template `alias` parameter
|
|
fail_compilation/diag_template_alias.d(1): Error: found `alias` when expecting `(`
|
|
fail_compilation/diag_template_alias.d(1): Error: semicolon expected following function declaration, not `(`
|
|
fail_compilation/diag_template_alias.d(1): Error: declaration expected, not `)`
|
|
---
|
|
*/
|
|
#line 1
|
|
void func1(alias alias)() {}
|