1 namespace gcc /* Test 1 */ {  // CHECK: namespace clang /* Test 1 */ {
2   int x;
3 }
4 
boo()5 void boo() {
6   gcc::x = 42;                // CHECK: clang::x = 42;
7 }
8 
9 // Test 1.
10 // RUN: clang-rename -offset=10 -new-name=clang %s -- | sed 's,//.*,,' | FileCheck %s
11 
12 // To find offsets after modifying the file, use:
13 //   grep -Ubo 'Foo.*' <file>
14