(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
test13226.d
// REQUIRED_ARGS: -o-
// EXTRA_FILES: imports/a13226.d
// PERMUTE_ARGS: -version=bug

import imports.a13226;

class C
{
    // class C member m is not accessible
    version(bug) mixin(t!(typeof(this), "f")); else {}
    version(bug) mixin(u!(typeof(this), "v")); else {}

    void f() {}
    int v;

    // here is ok
    version(bug) {} else mixin(t!(typeof(this), "f"));
    version(bug) {} else mixin(u!(typeof(this), "v"));
}

struct S
{
    // struct S member m is not accessible
    version(bug) mixin(t!(typeof(this), "f")); else {}
    version(bug) mixin(u!(typeof(this), "v")); else {}

    void f() {}
    int v;

    // here is ok
    version(bug) {} else mixin(t!(typeof(this), "f"));
    version(bug) {} else mixin(u!(typeof(this), "v"));
}