summaryrefslogtreecommitdiffstats
path: root/src/test/incremental/issue-49043.rs
blob: 8d13718b8d847a767c3c6f8a52d2b7f2dfd2c92f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Regression test for hashing involving canonical variables.  In this
// test -- which has an intentional error -- the type of the value
// being dropped winds up including a type variable. Canonicalization
// would then produce a `?0` which -- in turn -- triggered an ICE in
// hashing.

// revisions:cfail1

fn main() {
    println!("Hello, world! {}",*thread_rng().choose(&[0, 1, 2, 3]).unwrap());
    //[cfail1]~^ ERROR cannot find function `thread_rng`
}