blob: be342a225704d42ff8d492b97594db74d4585288 [file] [log] [blame]
Richard Smith9ca5c422011-10-13 22:29:44 +00001// RUN: %clang_cc1 -fsyntax-only -pedantic -std=c++11 -verify %s
Douglas Gregor8b9575f2009-08-24 12:17:54 +00002
3void foo();
4
5void bar() { };
6
7void wibble();
8
9;
Douglas Gregor684582b2009-08-24 12:20:57 +000010
11namespace Blah {
12 void f() { };
13
14 void g();
15}