d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / diag9679.d
blob85923b7189e11db6e053f95dcd34f407de8eddb2
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/diag9679.d(11): Error: variable `diag9679.main.n` - only parameters, functions and `foreach` declarations can be `ref`
5 fail_compilation/diag9679.d(12): Error: variable `diag9679.main.n` - storage class `auto` has no effect if type is not inferred, did you mean `scope`?
6 ---
7 */
9 void main()
11 if (ref n = 1) {}
12 if (auto int n = 1) {}