1// RUN: %clang_cc1 -fsyntax-only -pedantic -std=c++11 -verify %s
2
3void foo();
4
5void bar() { };
6
7void wibble();
8
9;
10
11namespace Blah {
12  void f() { };
13
14  void g();
15}
16