blob: 53faea189e9e3ec29b1e45cb98254ab8e90421b1 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/diag9861.d(8): Error: no property `epsilon` for type `int`
fail_compilation/diag9861.d(9): while looking for match for `Foo!int`
---
*/
struct Foo(T, real x = T.epsilon) {}
Foo!(int) q;