Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail11748.d
blob: 7b6a6c8a7d1d68fccfae93ba5f49609dbc6c2a79 [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/fail11748.d(12): Error: expression `my_function(0)` is `void` and has no value
---
*/
void
main
()
{
enum
my_template
(
alias
T
)
=
T
.
stringof
;
void
my_function
(
int
i
)
{
}
my_template
!(
my_function
(
0
));
}