Uh oh!
There was an error while loading. Please reload this page.
Fixes #30089 - #30133
Conversation
jseyfried
commented
Dec 1, 2015
This fixes regression #30089 created by PR #29530, which caused intra-crate In fact, in stable Rust an intra-crate For example, this is legal: mod foo {externcrate core;}pubuse foo::core;fnmain(){use core;}but not this: mod foo {externcrate core;}pubuse foo::*;fnmain(){use core;} |
jseyfried
commented
Dec 1, 2015
This behavior used to be caused by this function, which had been used exclusively to create bindings for the When I refactored the function away, bindings for |
r? @nikomatsakis