5830ca216d
It lints against features that are inteded to be internal to the compiler and standard library. Implements MCP #596. We allow `internal_features` in the standard library and compiler as those use many features and this _is_ the standard library from the "internal to the compiler and standard library" after all. Marking some features as internal wasn't exactly the most scientific approach, I just marked some mostly obvious features. While there is a categorization in the macro, it's not very well upheld (should probably be fixed in another PR). We always pass `-Ainternal_features` in the testsuite About 400 UI tests and several other tests use internal features. Instead of throwing the attribute on each one, just always allow them. There's nothing wrong with testing internal features^^
16 lines
489 B
Plaintext
16 lines
489 B
Plaintext
error: the feature `unsafe_pin_internals` is internal to the compiler or standard library
|
|
--> $DIR/feature-gate-unsafe_pin_internals.rs:3:12
|
|
|
|
|
LL | #![feature(unsafe_pin_internals)]
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: using it is strongly discouraged
|
|
note: the lint level is defined here
|
|
--> $DIR/feature-gate-unsafe_pin_internals.rs:2:11
|
|
|
|
|
LL | #![forbid(internal_features, unsafe_code)]
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to previous error
|
|
|