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
// RUN: %clang_cc1 %s -emit-llvm -triple i686-pc-linux -o - -chain-include %s -chain-include %s | FileCheck %s
// CHECK: define linkonce_odr %{{[^ ]+}} @_ZN1AI1BE3getEv
#if !defined(PASS1)
#define PASS1

template <typename Derived>
struct A {
  Derived* get() { return 0; }
};

struct B : A<B> {
};

#elif !defined(PASS2)
#define PASS2

struct C : B {
};

struct D : C {
  void run() {
    (void)get();
  }
};

#else

int main() {
  D d;
  d.run();
}

#endif