Richard Smith | 762bb9d | 2011-10-13 22:29:44 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -pedantic -std=c++11 -verify %s |
Douglas Gregor | a1d71ae | 2009-08-24 12:17:54 +0000 | [diff] [blame] | 2 | |
3 | void foo(); | ||||
4 | |||||
5 | void bar() { }; | ||||
6 | |||||
7 | void wibble(); | ||||
8 | |||||
9 | ; | ||||
Douglas Gregor | 1bba242 | 2009-08-24 12:20:57 +0000 | [diff] [blame] | 10 | |
11 | namespace Blah { | ||||
12 | void f() { }; | ||||
13 | |||||
14 | void g(); | ||||
15 | } |