Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

// RUN: %clang_cc1 %s -emit-llvm-only

namespace test0 {
template <typename T> struct X {
  virtual void foo();
  virtual void bar();
  virtual void baz();
};

template <typename T> void X<T>::foo() {}
template <typename T> void X<T>::bar() {}
template <typename T> void X<T>::baz() {}

template <> void X<char>::foo() {}
template <> void X<char>::bar() {}
}

namespace test1 {
template <typename T> struct X {
  virtual void foo();
  virtual void bar();
  virtual void baz();
};

template <typename T> void X<T>::foo() {}
template <typename T> void X<T>::bar() {}
template <typename T> void X<T>::baz() {}

template <> void X<char>::bar() {}
template <> void X<char>::foo() {}
}