mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-04 00:06:50 +00:00
c6e68daac0
llvm-svn: 166280
17 lines
192 B
C++
17 lines
192 B
C++
// RUN: %clang_cc1 -fsyntax-only -pedantic -std=c++11 -verify %s
|
|
// expected-no-diagnostics
|
|
|
|
void foo();
|
|
|
|
void bar() { };
|
|
|
|
void wibble();
|
|
|
|
;
|
|
|
|
namespace Blah {
|
|
void f() { };
|
|
|
|
void g();
|
|
}
|