Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Monomorphisation compilation panic on nightly when Oracles use type alias for a tuple #4518

Closed
LogvinovLeon opened this issue Mar 11, 2024 · 0 comments · Fixed by #4521
Closed
Labels
bug Something isn't working

Comments

@LogvinovLeon
Copy link
Contributor

Aim

I would like my code to compile and not crash the compiler

Expected Behavior

It compiles

Bug

The application panicked (crashed).
Message: internal error: entered unreachable code: unwrap_tuple_type: expected tuple, found AccountWithStateProof
Location: compiler/noirc_frontend/src/monomorphization/mod.rs:1700

To Reproduce

fn main() {
    get_account();
}

struct Account {
}

struct StateProof {
}

type AccountWithStateProof = (Account, StateProof);

pub fn get_account() {
    let (account, state_proof) = get_account_unconstrained();
}

#[oracle(get_account)]
unconstrained fn get_account_oracle() -> AccountWithStateProof {}

unconstrained fn get_account_unconstrained(
) -> AccountWithStateProof {
    get_account_oracle()
}

Project Impact

Blocker

Impact Context

No response

Workaround

None

Workaround Description

No response

Additional Context

No response

Installation Method

None

Nargo Version

0.24.0+f988d020e43cdf36a38613f2052d4518de39193a

NoirJS Version

No response

Would you like to submit a PR for this Issue?

None

Support Needs

No response

@LogvinovLeon LogvinovLeon added the bug Something isn't working label Mar 11, 2024
@github-project-automation github-project-automation bot moved this to 📋 Backlog in Noir Mar 11, 2024
github-merge-queue bot pushed a commit that referenced this issue Mar 11, 2024
# Description

## Problem\*

Resolves #4518

## Summary\*



## Additional Context

A match case for `Type::Alias` was forgotten when that was initially
added.

## Documentation\*

Check one:
- [x] No documentation needed.
- [ ] Documentation included in this PR.
- [ ] **[Exceptional Case]** Documentation to be submitted in a separate
PR.

# PR Checklist\*

- [x] I have tested the changes locally.
- [x] I have formatted the changes with [Prettier](https://prettier.io/)
and/or `cargo fmt` on default settings.
@github-project-automation github-project-automation bot moved this from 📋 Backlog to ✅ Done in Noir Mar 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
Archived in project
Development

Successfully merging a pull request may close this issue.

1 participant