Files
clang-p2996/clang/test/Import/import-overrides/test.cpp
Lang Hames 86ac9182e0 Add testcase for r305850.
Accidentally left this out of the original commit.

llvm-svn: 307444
2017-07-07 21:51:11 +00:00

8 lines
164 B
C++

// RUN: clang-import-test -dump-ast -import %S/Inputs/Hierarchy.cpp -expression %s | FileCheck %s
// CHECK: Overrides:{{.*}}Base::foo
void foo() {
Derived d;
}