pragma experimental SMTChecker; contract B { uint x = 5; } contract C is B { constructor() { assert(x == 5); x = 10; } function f(uint y) public view { assert(y == x); } } // ---- // Warning 6328: (165-179): Assertion violation happens here