bolt/deps/llvm-18.1.8/clang/test/Analysis/virtualcall.h
2025-02-14 19:21:04 +01:00

9 lines
200 B
C++

namespace header {
class Z {
public:
Z() {
foo(); // impure-warning {{Call to virtual method 'Z::foo' during construction bypasses virtual dispatch}}
}
virtual int foo();
};
}