summaryrefslogtreecommitdiffstats
path: root/tests/ui/save-analysis/issue-37323.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/save-analysis/issue-37323.rs')
-rw-r--r--tests/ui/save-analysis/issue-37323.rs20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/ui/save-analysis/issue-37323.rs b/tests/ui/save-analysis/issue-37323.rs
deleted file mode 100644
index 55f5c5a95..000000000
--- a/tests/ui/save-analysis/issue-37323.rs
+++ /dev/null
@@ -1,20 +0,0 @@
-// check-pass
-// compile-flags: -Zsave-analysis
-
-#![feature(rustc_attrs)]
-#![allow(warnings)]
-
-#[derive(Debug)]
-struct Point {
-}
-
-struct NestedA<'a, 'b> {
- x: &'a NestedB<'b>
-}
-
-struct NestedB<'a> {
- x: &'a i32,
-}
-
-fn main() {
-}