blob: e83fd9e8dbd7c07d273cbd0c9c12958a04698391 [file] [log] [blame]
Douglas Gregora1d71ae2009-08-24 12:17:54 +00001// RUN: clang-cc -fsyntax-only -pedantic -std=c++0x -verify %s
2
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}