reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48
   49
   50
   51
   52
   53
   54
   55
   56
   57
   58
   59
   60
   61
   62
   63
   64
   65
   66
   67
   68
   69
   70
   71
   72
   73
   74
   75
   76
   77
   78
   79
   80
   81
// RUN: %clang_cc1 %s -emit-llvm -triple %itanium_abi_triple -o - | FileCheck %s

// CHECK: @_ZTVZZ1HvEN1S1IEvE1S = 

// CHECK: define {{.*}} @_Z2L1v(
// CHECK: define {{.*}} @_ZZ2L1vEN1S2L2Ev(
// CHECK: define {{.*}} @_ZZ2L1vEN1S2L2E_0v(
// CHECK: define {{.*}} @_ZZ1FvEN1S1T1S1T1GEv(
// CHECK: define {{.*}} @_ZZZ2L1vEN1S2L2EvEN1S3L3aEv(
// CHECK: define {{.*}} @_ZZZ2L1vEN1S2L2EvEN1S3L3bE_0v(
// CHECK: define {{.*}} @_ZZZ2L1vEN1S2L2E_0vEN1S3L3cEv(
// CHECK: define {{.*}} @_ZZZ2L1vEN1S2L2E_0vEN1S3L3dE_0v(

void L1() {
  {
    struct S {
      void L2() {
        {
          struct S {
            void L3a() {}
          };
          S().L3a();
        }
        {
          struct S {
            void L3b() {}
          };
          S().L3b();
        }
      }
    };
    S().L2();
  }
  {
    struct S {
      void L2() {
        {
          struct S {
            void L3c() {}
          };
          S().L3c();
        }
        {
          struct S {
            void L3d() {}
          };
          S().L3d();
        }
      }
    };
    S().L2();
  }
}

void F() {
  struct S {
    struct T {
      struct S {
        struct T {
          void G() {}
        };
      };
    };
  };
  S::T::S::T().G();
}

struct B { virtual void Foo() = 0; };
void G(const B &);

void H() {
  struct S {
    void I() {
      struct S : B {
        virtual void Foo() {}
      };
      G(S());
    }
  };
  S().I();
}