-
Notifications
You must be signed in to change notification settings - Fork 13.7k
Closed
Labels
C-bugCategory: This is a bug.Category: This is a bug.T-compilerRelevant to the compiler team, which will review and decide on the PR/issue.Relevant to the compiler team, which will review and decide on the PR/issue.T-langRelevant to the language teamRelevant to the language team
Description
(spawned off of #43106)
As the title says, there are two entries for "no_builtins"
.
They look like:
...
("no_builtins", Whitelisted, Ungated),
...
("no_builtins", CrateLevel, Ungated),
...
I doubt the duplicate differing entries are a deliberate choice.
I suspect this may be hiding a small bug, since I currently do not get an error from the compiler (including on the stable channel) when I hand it code like this:
#[no_builtins = "0300"]
mod no_builtins { mod inner { #![no_builtins="0200"] }
}
fn main() { }
Metadata
Metadata
Assignees
Labels
C-bugCategory: This is a bug.Category: This is a bug.T-compilerRelevant to the compiler team, which will review and decide on the PR/issue.Relevant to the compiler team, which will review and decide on the PR/issue.T-langRelevant to the language teamRelevant to the language team