about summary refs log tree commit diff
path: root/src/test/run-make/rustdoc-scrape-examples-ordering/examples
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-make/rustdoc-scrape-examples-ordering/examples')
-rw-r--r--src/test/run-make/rustdoc-scrape-examples-ordering/examples/ex1.rs11
-rw-r--r--src/test/run-make/rustdoc-scrape-examples-ordering/examples/ex2.rs8
2 files changed, 0 insertions, 19 deletions
diff --git a/src/test/run-make/rustdoc-scrape-examples-ordering/examples/ex1.rs b/src/test/run-make/rustdoc-scrape-examples-ordering/examples/ex1.rs
deleted file mode 100644
index 05c18007b0c..00000000000
--- a/src/test/run-make/rustdoc-scrape-examples-ordering/examples/ex1.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-fn main() {
-    foobar::ok(0);
-
-    // this is a
-
-    //  ..
-
-    // BIG
-
-    // item
-}
diff --git a/src/test/run-make/rustdoc-scrape-examples-ordering/examples/ex2.rs b/src/test/run-make/rustdoc-scrape-examples-ordering/examples/ex2.rs
deleted file mode 100644
index de21d9061f8..00000000000
--- a/src/test/run-make/rustdoc-scrape-examples-ordering/examples/ex2.rs
+++ /dev/null
@@ -1,8 +0,0 @@
-fn main() {
-    foobar::ok(1);
-    // small item
-}
-
-fn f() {
-    foobar::ok(2);
-}