Ignore:
Timestamp:
Mar 4, 2023, 3:05:28 PM (18 months ago)
Author:
caparsons <caparson@…>
Branches:
ADT, ast-experimental, master
Children:
e54b4e9
Parents:
858350a
Message:

added test case to types test and refactored to remove redundant ctor calls

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/concurrent/actors/pingpong.cfa

    r858350a r4933f18  
    66#include <actor.hfa>
    77
    8 struct ping {
    9     inline actor;
    10 };
    11 static inline void ?{}( ping & this ) { ((actor &)this){}; }
    12 
    13 struct pong {
    14     inline actor;
    15 };
    16 static inline void ?{}( pong & this ) { ((actor &)this){}; }
     8struct ping { inline actor; };
     9struct pong { inline actor; };
    1710
    1811struct p_msg {
Note: See TracChangeset for help on using the changeset viewer.