update diagnostics E0109 about None::<T>

This commit is contained in:
Liigo Zhuang 2015-07-08 13:07:50 +08:00
parent 67256dff6d
commit 6a9f4dbc61

View file

@ -375,6 +375,9 @@ Example:
```
type X = u32; // ok!
```
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##"