Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail331.d
blob: 7f978016e4103e3e3968e0cc07bbf39439f9226a [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/fail331.d(10): Error: cannot use `typeof(return)` inside function `foo` with inferred return type
---
*/
auto
foo
()
{
typeof
(
return
)
result
;
return
result
;
}