summaryrefslogtreecommitdiffstats
path: root/third_party/rust/proc-macro-error/tests/ok.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/proc-macro-error/tests/ok.rs')
-rw-r--r--third_party/rust/proc-macro-error/tests/ok.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/third_party/rust/proc-macro-error/tests/ok.rs b/third_party/rust/proc-macro-error/tests/ok.rs
new file mode 100644
index 0000000000..cf64c027f8
--- /dev/null
+++ b/third_party/rust/proc-macro-error/tests/ok.rs
@@ -0,0 +1,10 @@
+extern crate test_crate;
+
+use test_crate::*;
+
+ok!(it_works);
+
+#[test]
+fn check_it_works() {
+ it_works();
+}