You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
358 B
11 lines
358 B
7 months ago
|
// RUN: %clang_cc1 -std=c++11 -verify %s -Wno-unused
|
||
|
|
||
|
// This must be at the start of the file (the failure depends on a SmallPtrSet
|
||
|
// not having been reallocated yet).
|
||
|
void fn1() {
|
||
|
// expected-no-diagnostics
|
||
|
constexpr int kIsolationClass = 0;
|
||
|
const int kBytesPerConnection = 0;
|
||
|
[=] { kIsolationClass, kBytesPerConnection, kBytesPerConnection; };
|
||
|
}
|