mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
9 lines
254 B
D
9 lines
254 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail19915.d(8): Error: undefined identifier `c` in module `fail19915`
|
|
fail_compilation/fail19915.d(9): Error: template instance `fail19915.a!int` error instantiating
|
|
---
|
|
*/
|
|
class a (b) { align.c d; }
|
|
alias a!(int) e;
|