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 3ccf7dc commit e8d9291Copy full SHA for e8d9291
tests/testsuite/doc.rs
@@ -2420,7 +2420,12 @@ fn scrape_examples_avoid_build_script_cycle() {
2420
.run();
2421
}
2422
2423
-#[cargo_test(nightly, reason = "rustdoc scrape examples flags are unstable")]
+// FIXME: This test is broken with latest nightly 2022-08-02.
2424
+// The example is calling a function from a proc-macro, but proc-macros don't
2425
+// export functions. It is not clear what this test is trying to exercise.
2426
+// #[cargo_test(nightly, reason = "rustdoc scrape examples flags are unstable")]
2427
+#[ignore]
2428
+#[cargo_test]
2429
fn scrape_examples_complex_reverse_dependencies() {
2430
let p = project()
2431
.file(
0 commit comments