Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail13187.d
blob: 2972c2792629cec3301395010beb88e9032954e0 [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/fail13187.d(12): Error: `pure` function `fail13187.test` cannot access mutable static data `my_func_ptr`
---
*/
int
function
(
int
)
pure my_func_ptr
;
void
test
()
pure
{
my_func_ptr
(
1
);
}