mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-03 00:24:34 +00:00
minor fix
This commit is contained in:
parent
5b8b781bad
commit
e6a149642d
2 changed files with 8 additions and 4 deletions
|
@ -113,9 +113,13 @@ pub fn helper(
|
|||
} => {
|
||||
// TODO support multiple of these!
|
||||
debug_assert_eq!(exposed_to_host.len(), 1);
|
||||
let (symbol, layout) = exposed_to_host[0];
|
||||
let (name, symbol, layout) = exposed_to_host[0];
|
||||
|
||||
SingleEntryPoint { symbol, layout }
|
||||
SingleEntryPoint {
|
||||
name,
|
||||
symbol,
|
||||
layout,
|
||||
}
|
||||
}
|
||||
EntryPoint::Test => {
|
||||
unreachable!()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue