mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
10 lines
287 B
D
10 lines
287 B
D
/* TEST_OUTPUT:
|
|
---
|
|
fail_compilation/b15875.d(9): Error: undefined identifier `a`
|
|
fail_compilation/b15875.d(10): Error: circular reference to `b15875.f`
|
|
---
|
|
*/
|
|
// https://issues.dlang.org/show_bug.cgi?id=15875
|
|
// https://issues.dlang.org/show_bug.cgi?id=17290
|
|
d o(int[a]a)(){}
|
|
f.T f(){}
|