mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
9 lines
323 B
D
9 lines
323 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail8009.d(9): Error: template `filter` is not callable using argument types `!()(void)`
|
|
fail_compilation/fail8009.d(8): Candidate is: `filter(R)(scope bool delegate(ref BAD!R) func)`
|
|
---
|
|
*/
|
|
void filter(R)(scope bool delegate(ref BAD!R) func) { }
|
|
void main() { filter(r => r); }
|