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;
}