We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 402b3c6 commit 4e9fdb8Copy full SHA for 4e9fdb8
test-cargo-miri/Cargo.toml
@@ -10,3 +10,7 @@ byteorder = "1.0"
10
[dev-dependencies]
11
rand = { version = "0.7", features = ["small_rng"] }
12
num_cpus = "1.10.1"
13
+
14
+[lib]
15
+test = false
16
+doctest = false # FIXME: doctests should be skipped automatically until we can run them...
test-cargo-miri/src/lib.rs
@@ -0,0 +1,7 @@
1
+/// Doc-test test
2
+/// ```rust
3
+/// assert!(true);
4
+/// ```
5
+pub fn make_true() -> bool {
6
+ true
7
+}
0 commit comments