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

This commit is contained in:
bors 2015-07-27 04:20:27 +00:00
commit 0469be1eb7

View file

@ -766,6 +766,9 @@ Example:
```
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##"