commit ce0bb7aa175c84fc39c1ac7af4c8cd8bfe46fd84
parent bc1f150af48d9be47d57f1756cb1f70b2d67259c
Author: Sebastian <sebastian@sebsite.pw>
Date: Fri, 15 Apr 2022 18:46:24 -0400
hare::parse: test long tuple type
Signed-off-by: Sebastian <sebastian@sebsite.pw>
Diffstat:
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/hare/parse/+test/types.ha b/hare/parse/+test/types.ha
@@ -64,6 +64,9 @@ export type baz = enum rune {
roundtrip("export type foo = (int, str);
export type bar = (a, b::c, d);
+
+export type baz = (bat, foo::bar::baz, long_type_name, yet_another_very_long_type_name,
+ this_spans_multiple_lines, for_readability);
");
};