Eli Friedman | bd94ab9 | 2009-11-26 02:52:12 +0000 | [diff] [blame^] | 1 | // RUN: clang-cc -emit-llvm -o - %s | FileCheck %s |
2 | |||||
3 | const int x = 10; | ||||
4 | const int y = 20; | ||||
5 | // CHECK-NOT: @x | ||||
6 | // CHECK: @y = internal constant i32 20 | ||||
7 | const int& b() { return y; } | ||||
8 |