blob: 592483c86bb63990d3939733da017192dc54c733 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -pedantic -std=c++0x -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}