Skip to content

Commit 85b5e98

Browse files
committed
Add internal_features lint
It lints against features that are inteded to be internal to the compiler and standard library. Implements MCP rust-lang#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^^
1 parent ff27f90 commit 85b5e98

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tests/compile-test.rs

+1
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ fn base_config(test_dir: &str) -> compiletest::Config {
140140
[
141141
"--emit=metadata",
142142
"-Aunused",
143+
"-Ainternal_features",
143144
"-Zui-testing",
144145
"-Dwarnings",
145146
&format!("-Ldependency={}", deps_path.display()),

0 commit comments

Comments
 (0)