[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Analysis / virtualcall.h
blobf591aab2cacfcc5bd6c124a49dc490fbba28ab2e
1 namespace header {
2 class Z {
3 public:
4 Z() {
5 foo(); // impure-warning {{Call to virtual method 'Z::foo' during construction bypasses virtual dispatch}}
7 virtual int foo();
8 };