Auto merge of #26876 - liigo:patch-3, r=Gankro

This commit is contained in:
bors
2015-07-27 04:20:27 +00:00
+3
View File
@@ -766,6 +766,9 @@ enum Enum {
```
type X = u32; // this compiles
```
Note that type parameters for enum-variant constructors go after the variant,
not after the enum (Option::None::<u32>, not Option::<u32>::None).
"##,
E0110: r##"