mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
12 lines
178 B
D
12 lines
178 B
D
//https://issues.dlang.org/show_bug.cgi?id=22574
|
|
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/test22574.d(100): Error: undefined identifier `x`
|
|
---
|
|
*/
|
|
#line 100
|
|
template test(x* x)
|
|
{
|
|
|
|
}
|