blob: 53a1d5e4c4504d3678164b4bc8d7b23b110ee453 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -emit-llvm -o - %s
Anders Carlssona0d4b632009-09-02 21:01:21 +00002struct S {
3 static int i;
4};
5
6void f() {
7 int a = S::i;
8}