• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %llvmgcc -xc++ -S -o - %s | not grep { constant }
2 
3 extern int X;
4 const int Y = X;
foo()5 const int* foo() { return &Y; }
6 
7