1
Fork 0

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() { fn main() {
let _ = if false { let _ = if false {
Cow::Owned(format!("{:?}", panic!())) /* as Cow<str> */ // uncomment to fix Cow::Owned(format!("{:?}", panic!()))
} else { } else {
Cow::Borrowed("") Cow::Borrowed("")
}; };