Skip to content

Commit

Permalink
Fix test again
Browse files Browse the repository at this point in the history
  • Loading branch information
manuel-serrano committed Dec 21, 2023
1 parent 55245bc commit 09334f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/multiple-interface.hh.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ import * as hh from "@hop/hiphop";

hiphop interface I1 { inout A, B, C; };
hiphop interface I2 extends I1 { inout D; };
hiphop interface I3 { inout Z; }

hiphop module M2() implements I2 {
emit A(10);
emit D(23);
}

hiphop module M1() implements I1, I2 {
inout Z;
hiphop module M1() implements I1, I3 {
run M2() { Z as D, * }
}

Expand Down

0 comments on commit 09334f1

Please sign in to comment.