]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/SemaCXX/PR23334.cpp
Vendor import of clang trunk r238337:
[FreeBSD/FreeBSD.git] / test / SemaCXX / PR23334.cpp
1 // RUN: %clang_cc1 -std=c++11 -verify %s -Wno-unused
2
3 // This must be at the start of the file (the failure depends on a SmallPtrSet
4 // not having been reallocated yet).
5 void fn1() {
6   // expected-no-diagnostics
7   constexpr int kIsolationClass = 0;
8   const int kBytesPerConnection = 0;
9   [=] { kIsolationClass, kBytesPerConnection, kBytesPerConnection; };
10 }