mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
11 lines
342 B
D
11 lines
342 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail237.d(11): Error: undefined identifier `a` in module `fail237`
|
|
fail_compilation/fail237.d(11): while evaluating: `static assert(module fail237.a!().b)`
|
|
---
|
|
*/
|
|
|
|
// https://issues.dlang.org/show_bug.cgi?id=581
|
|
// Error message w/o line number in dot-instantiated template
|
|
static assert(.a!().b);
|