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_analyze_cc1 -analyzer-checker=core -std=c++11 -verify %s
class C {};

// expected-no-diagnostics
void f(C i) {
  auto lambda = [&] { f(i); };
  typedef decltype(lambda) T;
  T* blah = new T(lambda);
  (*blah)();
  delete blah;
}