dmd/compiler/test/fail_compilation/ice13027.d
2022-07-09 18:53:07 +02:00

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";
}