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

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