Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail309.d
blob: 0fbfd590f9e05983a932090ce1fe153554befa11 [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/fail309.d(10): Error: circular reference to variable `fail309.S.x`
---
*/
// REQUIRED_ARGS: -d
struct
S
{
const
x
=
S
.
x
;
}