• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clang_cc1 -fsyntax-only -pedantic -std=c++0x -verify %s
2 
3 void foo();
4 
bar()5 void bar() { };
6 
7 void wibble();
8 
9 ;
10 
11 namespace Blah {
f()12   void f() { };
13 
14   void g();
15 }
16