(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
test23533.d
// https://issues.dlang.org/show_bug.cgi?id=23533
// REQUIRED_ARGS: -preview=nosharedaccess

enum E { a, b }

void main()
{
	E x = E.b;
	E y = E.max;
}