summaryrefslogtreecommitdiff
path: root/test/FrontendC/2004-03-07-ExternalConstant.c
blob: b8e13a35548a42a037bb92c534e209aee0e54f89 (plain)
1
2
3
4
5
6
7
// RUN: %llvmgcc -xc %s -c -o - | llvm-dis | grep constant

extern const int a[];   // 'a' should be marked constant even though it's external!
int foo () {
  return a[0];
}