forked from OSchip/llvm-project
6 lines
94 B
C++
6 lines
94 B
C++
|
// RUN: clang-cc -fsyntax-only -verify %s -std=c++98
|
||
|
void f() {
|
||
|
auto int a;
|
||
|
int auto b;
|
||
|
}
|