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