summaryrefslogtreecommitdiffstats
path: root/clang/test/Analysis/virtualcall.h
blob: f591aab2cacfcc5bd6c124a49dc490fbba28ab2e (plain)
1
2
3
4
5
6
7
8
9
namespace header {
  class Z {
  public:
    Z() {
      foo(); // impure-warning {{Call to virtual method 'Z::foo' during construction bypasses virtual dispatch}}
    }
    virtual int foo();
  };
}
OpenPOWER on IntegriCloud