blob: f5c0ea6e4d3bd12703a5383bfe587bb9290d2fe1 (
plain)
1
2
3
4
5
6
7
8
|
// { dg-options "-std=c++98 -Wc++11-compat" }
// Test warning for use of auto in C++98 mode with C++11
// compatibility warnings
void f()
{
auto int x = 5; // { dg-warning "changes meaning" }
}
|