Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign upCan't directly access nested records from another module #543
Comments
Ryan1729
changed the title from
Can't access nested records from another module
to
Can't directly access nested records from another module
Mar 30, 2016
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Show comment
Hide comment
jvoigtlaender
Mar 30, 2016
Contributor
Thanks for the report. It's not a core issue, but an elm-compiler issue. And it's already tracked there: elm/compiler#520
So I'm closing this issue here.
|
Thanks for the report. It's not a So I'm closing this issue here. |
jvoigtlaender
closed this
Mar 30, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ryan1729 commentedMar 30, 2016
Given the following files:
Main.elm
A.elm
I get the following error
Changing it to
A.bshows the whole record{ c = "123" }as expected.If I give
A.banother name, sayd = A.bthend.bgives the expected output, so I can use that as a workaround but not being able to access the record's value was unexpected.Running 0.16.0 through elm reactor.