You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
218 B
9 lines
218 B
4 months ago
|
class Foo1 { // CHECK: class Bar1
|
||
|
};
|
||
|
|
||
|
class Foo2 { // CHECK: class Bar2
|
||
|
};
|
||
|
|
||
|
// Test 1.
|
||
|
// RUN: clang-rename -qualified-name=Foo1 -new-name=Bar1 -qualified-name=Foo2 -new-name=Bar2 %s -- | sed 's,//.*,,' | FileCheck %s
|