mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-07-12 20:41:26 -07:00
dynamic type resolution in ir tree / type generation pass
This commit is contained in:
+13
-1
@@ -1266,7 +1266,19 @@ struct Derived : Base
|
||||
int b;
|
||||
int a;
|
||||
virtual ~Derived() = default;
|
||||
virtual void Foo() {a += 1;}
|
||||
virtual void Foo()
|
||||
{
|
||||
x += 1;
|
||||
y += 1;
|
||||
y += 1;
|
||||
z += 1;
|
||||
z += 1;
|
||||
z += 1;
|
||||
a += 1;
|
||||
a += 1;
|
||||
a += 1;
|
||||
a += 1;
|
||||
}
|
||||
};
|
||||
|
||||
struct DerivedA : Base
|
||||
|
||||
Reference in New Issue
Block a user