// Test that lldb doesn't get confused by an overload of a virtual// function of the same name.struct Base {virtualvoidf(int i) {}virtual~Base() {}};struct Derived : Base {virtualvoidf(int i,int j) {}};intmain(int argc,char**argv) {
Derived obj;
obj.f(1,2);//% self.expect("fr var", "not crashing", substrs = ["obj"])return0;}