Merge pull request #5457 from roc-lang/tuple-aliases

Add test for tuple annotations
This commit is contained in:
Ayaz 2023-05-26 17:28:56 -05:00 committed by GitHub
commit 62cdceabd6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,5 @@
interface Test exposes [x] imports []
x : (I64, Str)
x = (1, "")
#^{-1} ( I64, Str )*