17 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -pedantic -std=c++11 -verify %s2// expected-no-diagnostics3 4void foo();5 6void bar() { };7 8void wibble();9 10;11 12namespace Blah {13 void f() { };14 15 void g();16}17 1// RUN: %clang_cc1 -fsyntax-only -pedantic -std=c++11 -verify %s2// expected-no-diagnostics3 4void foo();5 6void bar() { };7 8void wibble();9 10;11 12namespace Blah {13 void f() { };14 15 void g();16}17