]> git.proxmox.com Git - rustc.git/blame - src/llvm/tools/clang/test/Parser/top-level-semi-cxx0x.cpp
Imported Upstream version 0.6
[rustc.git] / src / llvm / tools / clang / test / Parser / top-level-semi-cxx0x.cpp
CommitLineData
223e47cc
LB
1// RUN: %clang_cc1 -fsyntax-only -pedantic -std=c++11 -verify %s
2
3void foo();
4
5void bar() { };
6
7void wibble();
8
9;
10
11namespace Blah {
12 void f() { };
13
14 void g();
15}