Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
diag15340.d
blob: 89017043884d4cd6fc1bb299289ca8e53d9b417c [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/diag15340.d(11): Error: undefined identifier `undef1`
fail_compilation/diag15340.d(12): Error: undefined identifier `undef2`
---
*/
class
C
{
auto
a
=
undef1
;
auto
b
=
undef2
;
}