| Richard Smith | 9ca5c42 | 2011-10-13 22:29:44 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -pedantic -std=c++11 -verify %s |
| Douglas Gregor | 8b9575f | 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 | 684582b | 2009-08-24 12:20:57 +0000 | [diff] [blame] | 10 | |
| 11 | namespace Blah { | ||||
| 12 | void f() { }; | ||||
| 13 | |||||
| 14 | void g(); | ||||
| 15 | } | ||||