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