-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
"Don't know the field number in this context" #64385
Labels
A-attributes
Area: Attributes (`#[…]`, `#![…]`)
C-bug
Category: This is a bug.
I-ICE
Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
P-high
High priority
regression-from-stable-to-nightly
Performance or correctness regression from stable to nightly.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
Comments
dtolnay
added
I-ICE
Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
regression-from-stable-to-nightly
Performance or correctness regression from stable to nightly.
labels
Sep 11, 2019
jonas-schievink
added
C-bug
Category: This is a bug.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
I-nominated
A-attributes
Area: Attributes (`#[…]`, `#![…]`)
labels
Sep 11, 2019
Yeah, this is some known shortcut taken in #63468, sorry. |
Thanks. The realistic usage where this appears is if you forget to import a derive macro, which happens commonly. //use serde::Deserialize;
#[derive(Deserialize)]
struct Outer<'a>(#[serde(borrow)] Inner<'a>); |
Un-nominating since Vadim self-assigned. |
triage: P-high. |
Fixed in #64457. |
sdbondi
added a commit
to tari-project/tari
that referenced
this issue
Oct 11, 2019
- rust nightly-2019-10-04 (Requires new docker image build) - futures alpha.19 - tokio alpha.6 - tower alpha2 Came across this panic in the rust compiler in a PR to follow: rust-lang/rust#64385
11 tasks
sdbondi
added a commit
to tari-project/tari
that referenced
this issue
Oct 11, 2019
- rust nightly-2019-10-04 (Requires new docker image build) - futures alpha.19 - tokio alpha.6 - tower alpha2 Came across this panic in the rust compiler in a PR to follow: rust-lang/rust#64385
sdbondi
added a commit
to tari-project/tari
that referenced
this issue
Oct 14, 2019
- rust nightly-2019-10-04 (Requires new docker image build) - futures alpha.19 - tokio alpha.6 - tower alpha2 Came across this panic in the rust compiler in a PR to follow: rust-lang/rust#64385
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A-attributes
Area: Attributes (`#[…]`, `#![…]`)
C-bug
Category: This is a bug.
I-ICE
Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
P-high
High priority
regression-from-stable-to-nightly
Performance or correctness regression from stable to nightly.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
src/lib.rs:
Stable, and nightly-2019-09-09:
nightly-2019-09-10:
2b8116d...0b36e9d
Mentioning @c410-f3r @petrochenkov because this is likely from #63468.
The text was updated successfully, but these errors were encountered: