(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
testcorrectthis.d
// https://issues.dlang.org/show_bug.cgi?id=10886

struct A
{
    @property int foo() { return 0; }
    int bar() { return 0; }
}

struct B
{
    void bar()
    {
        alias f = typeof(A.foo);  // NG
        alias b = typeof(A.bar);  // ok
    }
}

// https://issues.dlang.org/show_bug.cgi?id=21288

struct XA
{
    int p;
}

struct XB
{
    XA a() { return XA.init; }
    alias a this;
}

struct XC
{
    void foo()
    {
        static assert(XB.p.stringof == "p"); // Error: this for s needs to be type B not type C
    }
}