blob: 635329323354ad07a7e75265b8ab5eacaf9ad824 [file] [log] [blame]
Anders Carlsson2928c212009-05-16 21:02:39 +00001// RUN: clang-cc -emit-llvm %s -o %t &&
2namespace foo {
3
4// RUN: not grep "@a = global i32" %t &&
5extern "C" int a;
6
7// RUN: not grep "@_ZN3foo1bE = global i32" %t &&
8extern int b;
9
10// RUN: grep "@_ZN3foo1cE = global i32" %t | count 1
11int c = 5;
12
13}