mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
10 lines
157 B
D
10 lines
157 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/ice13027.d(9): Error: template instance `b!"c"` template `b` is not defined
|
|
---
|
|
*/
|
|
void main()
|
|
{
|
|
scope a = b!"c";
|
|
}
|