blob: 472686e8b3451da5a8a93274d2e6670d44186dca [file] [log] [blame]
Richard Smith762bb9d2011-10-13 22:29:44 +00001// RUN: %clang_cc1 -fsyntax-only -pedantic -std=c++11 -verify %s
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +00002// expected-no-diagnostics
Douglas Gregora1d71ae2009-08-24 12:17:54 +00003
4void foo();
5
6void bar() { };
7
8void wibble();
9
10;
Douglas Gregor1bba2422009-08-24 12:20:57 +000011
12namespace Blah {
13 void f() { };
14
15 void g();
16}