Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/exceptions/virtual-poly.cfa

    rfd54fef r66812dd  
    1616};
    1717
    18 forall(T)
     18forall(otype T)
    1919struct mono_child_vtable {
    2020        mono_base_vtable const * const parent;
    2121};
    2222
    23 forall(T)
     23forall(otype T)
    2424struct mono_child {
    2525        mono_child_vtable(T) const * virtual_table;
     
    3737}
    3838
    39 forall(U)
     39forall(otype U)
    4040struct poly_base_vtable {
    4141        poly_base_vtable(U) const * const parent;
    4242};
    4343
    44 forall(U)
     44forall(otype U)
    4545struct poly_base {
    4646        poly_base_vtable(U) const * virtual_table;
    4747};
    4848
    49 forall(V)
     49forall(otype V)
    5050struct poly_child_vtable {
    5151        poly_base_vtable(V) const * const parent;
    5252};
    5353
    54 forall(V)
     54forall(otype V)
    5555struct poly_child {
    5656        poly_child_vtable(V) const * virtual_table;
Note: See TracChangeset for help on using the changeset viewer.