about summary refs log tree commit diff
path: root/src/test/rustdoc/no-run-still-checks-lints.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-9/+0
2018-12-25Remove licensesMark Rousskov-10/+0
2016-04-11rustdoc: Fix testing no_run code blocksAlex Crichton-0/+19
This was a regression introduced by #31250 where the compiler deferred returning the results of compilation a little too late (after the `Stop` check was looked at). This commit alters the stop point to first try to return an erroneous `result` and only if it was successful return the sentinel `Err(0)`. Closes #31576