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

14 lines
189 B
D

/*
TEST_OUTPUT:
---
fail_compilation/fail10346.d(9): Error: undefined identifier `T`
---
*/
struct Foo(T) {}
void bar(T x, T)(Foo!T) {}
void main()
{
Foo!int spam;
bar!10(spam);
}