Add ignore reason to placate tidy

This commit is contained in:
Dylan MacKenzie 2019-09-17 17:49:13 -07:00
parent 288603709e
commit d583fefa59

View file

@ -21,7 +21,7 @@ use crate::dataflow::BottomValue;
/// You should use an `Engine` to actually run an analysis, and a `ResultsCursor` to inspect the
/// results of that analysis like so:
///
/// ```ignore
/// ```ignore(cross-crate-imports)
/// fn do_my_analysis(body: &mir::Body<'tcx>, dead_unwinds: &BitSet<BasicBlock>) {
/// let analysis = MyAnalysis::new();
/// let results = Engine::new(body, dead_unwinds, analysis).iterate_to_fixpoint();