summaryrefslogtreecommitdiffstats
path: root/tests/run-make/rustdoc-scrape-examples-ordering/examples/ex2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run-make/rustdoc-scrape-examples-ordering/examples/ex2.rs')
-rw-r--r--tests/run-make/rustdoc-scrape-examples-ordering/examples/ex2.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/run-make/rustdoc-scrape-examples-ordering/examples/ex2.rs b/tests/run-make/rustdoc-scrape-examples-ordering/examples/ex2.rs
new file mode 100644
index 000000000..de21d9061
--- /dev/null
+++ b/tests/run-make/rustdoc-scrape-examples-ordering/examples/ex2.rs
@@ -0,0 +1,8 @@
+fn main() {
+ foobar::ok(1);
+ // small item
+}
+
+fn f() {
+ foobar::ok(2);
+}