2012-02-15 04:00:16 -06:00
|
|
|
// error-pattern: is glob-imported from multiple different modules
|
2011-07-08 20:41:37 -05:00
|
|
|
// issue #482
|
|
|
|
|
|
|
|
use std;
|
|
|
|
// expecting swap to be defined in vec
|
2011-12-13 18:25:51 -06:00
|
|
|
import vec::*;
|
2011-07-08 20:41:37 -05:00
|
|
|
import alternate_supplier::*;
|
|
|
|
|
|
|
|
mod alternate_supplier {
|
2012-02-11 20:20:02 -06:00
|
|
|
fn contains() { }
|
2011-07-08 20:41:37 -05:00
|
|
|
}
|
|
|
|
|
2012-02-11 20:20:02 -06:00
|
|
|
fn main() { contains() }
|