blob: c9694739b493cdbfeb47cd7dde5503a4c9f9fcd0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// error-pattern: is glob-imported from multiple different modules
// issue #482
use std;
// expecting swap to be defined in vec
import vec::*;
import alternate_supplier::*;
mod alternate_supplier {
fn contains() { }
}
fn main() { contains() }
|