blob: 6c7d89f8cc1061b2ab6d6dc6ccfb3f28761d5cf8 [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;