view clang/test/SemaCXX/microsoft-super.cpp @ 222:81f6424ef0e3 llvm-original

LLVM original branch
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sun, 18 Jul 2021 22:10:01 +0900 (2021-07-18)
parents 1d019706d866
children
line wrap: on
line source
// RUN: %clang_cc1 -fms-extensions -verify %s

// rdar://22464808

namespace test0 {
  class A {
  private:
    void foo(int*);
  public:
    void foo(long*);
  };
  class B : public A {
    void test() {
      __super::foo((long*) 0);
    }
  };
}

namespace test1 {
  struct A {
    static void foo(); // expected-note {{member is declared here}}
  };
  struct B : private A { // expected-note {{constrained by private inheritance here}}
    void test() {
      __super::foo();
    }
  };
  struct C : public B {
    void test() {
      __super::foo(); // expected-error {{'foo' is a private member of 'test1::A'}}
    }
  };
}

namespace test2 {
  struct A {
    static void foo();
  };
  struct B : public A {
    void test() {
      __super::foo();
    }
  };
  struct C : private B {
    void test() {
      __super::foo();
    }
  };
}