mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 12:18:19 +00:00
16 lines
401 B
Text
16 lines
401 B
Text
# +opt infer:print_only_under_alias
|
|
app "test" provides [main] to "./platform"
|
|
|
|
main =
|
|
Named : [Named Str (List Named)]
|
|
|
|
foo : Named
|
|
foo = Named "outer" [Named "inner" []]
|
|
# ^^^ [Named Str (List a)] as a
|
|
|
|
Named name outerList = foo
|
|
# ^^^^^^^^^^^^^^^^^^^^ [Named Str (List a)] as a
|
|
# ^^^^^^^^^ List ([Named Str (List a)] as a)
|
|
# ^^^^ Str
|
|
|
|
{name, outerList}
|