remove comments that were tripping up pretty printer

This commit is contained in:
Niko Matsakis 2017-03-27 19:48:55 -04:00
parent 744f666445
commit 2414222b17

View File

@ -19,7 +19,7 @@ use std::borrow::Cow;
fn main() {
let _ = if false {
Cow::Owned(format!("{:?}", panic!())) /* as Cow<str> */ // uncomment to fix
Cow::Owned(format!("{:?}", panic!()))
} else {
Cow::Borrowed("")
};