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
283 B

class B /* Test 1 */ { // CHECK: class B2 /* Test 1 */ {
};
class D : public B /* Test 1 */ { // CHECK: class D : public B2 /* Test 1 */ {
};
// Test 1.
// RUN: clang-rename -force -qualified-name B -new-name B2 -qualified-name E -new-name E2 %s -- | sed 's,//.*,,' | FileCheck %s