/ tests / tests / compiler / constructor / two_constructors_fail.adl
two_constructors_fail.adl
 1  program test.alpha {
 2      transition foo() {}
 3  
 4      @custom
 5      async constructor() {
 6          assert_eq(true, true);
 7      }
 8  
 9      @custom
10      async constructor() {
11          assert_eq(true, true);
12      }
13  }