blob: 9e5899c44df90c9ce2f1034ad98990e1801bcbd0 [file] [log] [blame]
Kirill Bobyrev713bdc02016-07-15 10:21:33 +00001// Currently unsupported test.
2// FIXME: clang-rename should handle conversions from a class type to another
3// type.
4
5class Foo {}; // CHECK: class Bar {};
6
7class Baz { // CHECK: class Bar {
8 operator Foo() const { // CHECK: operator Bar() const {
9 Foo foo; // CHECK: Bar foo;
10 return foo;
11 }
12};