diff options
author | Richard Eisenberg <eir@seas.upenn.edu> | 2013-08-28 12:05:03 -0400 |
---|---|---|
committer | Richard Eisenberg <eir@cis.upenn.edu> | 2013-09-17 21:41:53 -0400 |
commit | 1e3ca733694f0c9c8cc1d95237eb4b09cee4206f (patch) | |
tree | 73f31ae153ac841d0f8499b5edd98075881bdec4 /testsuite/tests/th/T4188.stderr | |
parent | b4ab30d54540573fbda3f561377d2c5968eb215c (diff) | |
download | haskell-1e3ca733694f0c9c8cc1d95237eb4b09cee4206f.tar.gz |
Update to tests due to change in syntax for role annotations.
Diffstat (limited to 'testsuite/tests/th/T4188.stderr')
-rw-r--r-- | testsuite/tests/th/T4188.stderr | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuite/tests/th/T4188.stderr b/testsuite/tests/th/T4188.stderr index 187d902ac1..02b997788b 100644 --- a/testsuite/tests/th/T4188.stderr +++ b/testsuite/tests/th/T4188.stderr @@ -1,6 +1,6 @@ -data T4188.T1 a_0@R = forall b_1 . T4188.MkT1 a_0 b_1 -data T4188.T2 a_0@R +data T4188.T1 a_0 = forall b_1 . T4188.MkT1 a_0 b_1 +data T4188.T2 a_0 = forall b_1 . (T4188.C a_0, T4188.C b_1) => T4188.MkT2 a_0 b_1 -data T4188.T3 x_0@N +data T4188.T3 x_0 = forall x_1 y_2 . (x_0 ~ (x_1, y_2), T4188.C x_1, T4188.C y_2) => T4188.MkT3 x_1 y_2 |