Skip to content

Commit

Permalink
Issue #485, #488: test expectations corrected.
Browse files Browse the repository at this point in the history
  • Loading branch information
iarkh committed Oct 4, 2019
1 parent a5b1418 commit 4dbc3a4
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ extension ExtendedA<T> on A<T> {
}

main() {
A a = A();
Expect.equals(A, a.checkme());
Expect.equals(A, a.checkGetter);
a.test(A);
A<int> a = A<int>();
Expect.equals(int, a.checkme());
Expect.equals(int, a.checkGetter);
a.test(int);
}

0 comments on commit 4dbc3a4

Please sign in to comment.