Home | History | Annotate | Download | only in Parser
      1 // RUN: %clang_cc1 -fsyntax-only -pedantic -std=c++11 -verify %s
      2 
      3 void foo();
      4 
      5 void bar() { };
      6 
      7 void wibble();
      8 
      9 ;
     10 
     11 namespace Blah {
     12   void f() { };
     13 
     14   void g();
     15 }
     16