blob: 133a3b5373f55e8380cbc7896aed7c18f24ff8a0 [file] [log] [blame]
Anders Carlsson98883e12008-12-03 05:51:23 +00001// RUN: clang -emit-llvm -o - %s | not grep "common"
2
3// This checks that the global won't be marked as common.
4// (It shouldn't because it's being initialized).
5
6int a;
7int a = 242;