mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
9 lines
272 B
D
9 lines
272 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail15361.d(9): Error: unexpected `(` after `errorize`, inside `is` expression
|
|
fail_compilation/fail15361.d(9): try enclosing the contents of `is` with a `typeof` expression
|
|
---
|
|
*/
|
|
|
|
enum isErrorizable(T) = is(errorize(T.init));
|