Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail12908.d
blob: 67ea6cefb22747862de49b0e9253652c62a1e9f8 [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/fail12908.d(14): Error: `pure` delegate `fail12908.main.__foreachbody1` cannot call impure function `fail12908.g`
---
*/
void
g
()
{}
void
main
()
pure
{
foreach
(
k
,
v
;
[
""
:
""
])
{
g
();
}
}