Add FIXME for apparent stage0 regression

This commit is contained in:
Niko Matsakis 2015-08-07 10:48:13 -04:00
parent 91b3e9cac0
commit d15d743fa8

View File

@ -273,7 +273,9 @@ enum PassArgs {
impl<'d,'t,'a,'tcx> ExprUseVisitor<'d,'t,'a,'tcx> {
pub fn new(delegate: &'d mut Delegate<'tcx>,
typer: &'t infer::InferCtxt<'a, 'tcx>)
-> ExprUseVisitor<'d,'t,'a, 'tcx> {
-> ExprUseVisitor<'d,'t,'a,'tcx>
where 'tcx: 't // FIXME(#27583) workaround apparent stage0 bug
{
ExprUseVisitor {
typer: typer,
mc: mc::MemCategorizationContext::new(typer),