| Douglas Gregor | a1d71ae | 2009-08-24 12:17:54 +0000 | [diff] [blame] | 1 | // RUN: clang-cc -fsyntax-only -pedantic -std=c++0x -verify %s | 
| 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 | } | ||||