blob: 3112f08f5c207632e6dc9cbdb8dfe51dead91135 [file] [log] [blame]
// PR c++/88613
// { dg-do compile { target c++11 } }
// { dg-additional-options -Wtautological-compare }
void a() {
const int b = 5;
[=] {
if (b != 5)
;
}();
}