
Implements https://discourse.llvm.org/t/rfc-allow-c-11-lambdas-in-c-03-as-an-extension/75262
6 lines
155 B
C++
6 lines
155 B
C++
// RUN: %clang_cc1 -fsyntax-only -Wno-unused-value -verify -std=c++03 %s
|
|
|
|
void func() {
|
|
[]() {}; // expected-warning {{lambdas are a C++11 extension}}
|
|
}
|