mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 03:40:37 -05:00
5 lines
96 B
C++
5 lines
96 B
C++
// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++98
|
|
void f() {
|
|
auto int a;
|
|
int auto b;
|
|
}
|