Clang Project

clang_source_code/test/Parser/top-level-semi-cxx0x.cpp
1// RUN: %clang_cc1 -fsyntax-only -pedantic -std=c++11 -verify %s
2// expected-no-diagnostics
3
4void foo();
5
6void bar() { };
7
8void wibble();
9
10;
11
12namespace Blah {
13  void f() { };
14  
15  void g();
16}
17