- File:
-
- 1 edited
-
tests/exceptions/virtual-poly.cfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tests/exceptions/virtual-poly.cfa
rfd54fef r66812dd 16 16 }; 17 17 18 forall( T)18 forall(otype T) 19 19 struct mono_child_vtable { 20 20 mono_base_vtable const * const parent; 21 21 }; 22 22 23 forall( T)23 forall(otype T) 24 24 struct mono_child { 25 25 mono_child_vtable(T) const * virtual_table; … … 37 37 } 38 38 39 forall( U)39 forall(otype U) 40 40 struct poly_base_vtable { 41 41 poly_base_vtable(U) const * const parent; 42 42 }; 43 43 44 forall( U)44 forall(otype U) 45 45 struct poly_base { 46 46 poly_base_vtable(U) const * virtual_table; 47 47 }; 48 48 49 forall( V)49 forall(otype V) 50 50 struct poly_child_vtable { 51 51 poly_base_vtable(V) const * const parent; 52 52 }; 53 53 54 forall( V)54 forall(otype V) 55 55 struct poly_child { 56 56 poly_child_vtable(V) const * virtual_table;
Note:
See TracChangeset
for help on using the changeset viewer.