From 10ec0586387d586d637a8459b58d5fbd486c9915 Mon Sep 17 00:00:00 2001 From: Tim Chevalier Date: Thu, 6 Dec 2012 18:32:01 -0800 Subject: [PATCH] Remove obsolete comment --- src/test/pretty/block-arg-disambig.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/test/pretty/block-arg-disambig.rs b/src/test/pretty/block-arg-disambig.rs index 4bc01f1c6a9b..4d394005713d 100644 --- a/src/test/pretty/block-arg-disambig.rs +++ b/src/test/pretty/block-arg-disambig.rs @@ -1,5 +1,2 @@ -// FIXME: The disambiguation the pretty printer does here -// is probably not necessary anymore (#2882) - fn blk1(b: fn()) -> fn@() { return fn@() { }; } fn test1() { (do blk1 { debug!("hi"); })(); }