Fix syntax

This commit is contained in:
Jeremy Kolb 2019-10-27 22:03:58 -04:00
parent 49e89772f6
commit 44f2805fee

View file

@ -502,7 +502,7 @@ enum E {
/// Another /// Another
B, B,
/// And C /// And C
C(a: i32, b: i32) C { a: i32, b: i32 }
} }
fn main() { fn main() {