rust/src/libtime
P1start d9769ec383 Parse fully-qualified associated types in generics without whitespace
This breaks code that looks like this:

    let x = foo as bar << 13;

Change such code to look like this:

    let x = (foo as bar) << 13;

Closes #17362.

[breaking-change]
2014-12-25 18:58:47 +13:00
..
lib.rs Parse fully-qualified associated types in generics without whitespace 2014-12-25 18:58:47 +13:00