We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b25039f commit f51a580Copy full SHA for f51a580
tests/testsuite/rustc_info_cache.rs
@@ -1,7 +1,5 @@
1
//! Tests for the cache file for the rustc version info.
2
3
-#![allow(deprecated)]
4
-
5
use cargo_test_support::{basic_bin_manifest, paths::CargoPathExt};
6
use cargo_test_support::{basic_manifest, project};
7
use std::env;
@@ -10,6 +8,7 @@ const MISS: &str = "[..] rustc info cache miss[..]";
10
8
const HIT: &str = "[..]rustc info cache hit[..]";
11
9
const UPDATE: &str = "[..]updated rustc info cache[..]";
12
+#[allow(deprecated)]
13
#[cargo_test]
14
fn rustc_info_cache() {
15
let p = project()
@@ -105,6 +104,7 @@ fn rustc_info_cache() {
105
104
.run();
106
}
107
108
109
fn rustc_info_cache_with_wrappers() {
110
let wrapper_project = project()
0 commit comments