blob: 27ae8bf919cae923145742695c1d65ad4881c6bd (
plain)
1
2
3
4
5
6
|
// RUN: %clang_cc1 -emit-llvm %s -o - -cxx-abi microsoft -triple=i386-apple-darwin10 | FileCheck %s
//int a; // FIXME: All names not in an extern "C" block are mangled
namespace N { int b; }
// CHECK: @"\01?b@N@@"
|