summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc-json/impls/auto.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/rustdoc-json/impls/auto.rs')
-rw-r--r--src/test/rustdoc-json/impls/auto.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/test/rustdoc-json/impls/auto.rs b/src/test/rustdoc-json/impls/auto.rs
deleted file mode 100644
index 50d852414..000000000
--- a/src/test/rustdoc-json/impls/auto.rs
+++ /dev/null
@@ -1,18 +0,0 @@
-#![feature(no_core, auto_traits, lang_items)]
-#![no_core]
-
-#[lang = "sized"]
-trait Sized {}
-
-pub auto trait Bar {}
-
-/// has span
-impl Foo {
- pub fn baz(&self) {}
-}
-
-// Testing spans, so all tests below code
-// @is "$.index[*][?(@.kind=='impl' && @.inner.synthetic==true)].span" null
-// @is "$.index[*][?(@.docs=='has span')].span.begin" "[10, 0]"
-// @is "$.index[*][?(@.docs=='has span')].span.end" "[12, 1]"
-pub struct Foo;