]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc_mir/dataflow/graphviz.rs
Deny explicit_outlives_requirements in the compiler
[rust.git] / src / librustc_mir / dataflow / graphviz.rs
index f62ad2fbef71f06bcd8d3d8e7cac5f55440f761f..7896592eea68582238a68760f310f9332c9336db 100644 (file)
@@ -30,7 +30,7 @@ fn body(&self) -> &Body<'tcx> { self.flow_state.body() }
     fn flow_state(&self) -> &DataflowState<'tcx, Self::BD> { &self.flow_state.flow_state }
 }
 
-struct Graph<'a, 'tcx, MWF:'a, P> where
+struct Graph<'a, 'tcx, MWF, P> where
     MWF: MirWithFlowState<'tcx>
 {
     mbcx: &'a MWF,