2015-02-22 11:47:27 +00:00
|
|
|
#![allow(warnings)]
|
|
|
|
|
2015-03-16 16:45:01 +00:00
|
|
|
pub fn fail(x: Option<&(Iterator<Item=()>+Send)>)
|
|
|
|
-> Option<&Iterator<Item=()>> {
|
2015-02-17 10:17:19 +00:00
|
|
|
// This call used to trigger an LLVM assertion because the return
|
|
|
|
// slot had type "Option<&Iterator>"* instead of
|
|
|
|
// "Option<&(Iterator+Send)>"* -- but this now yields a
|
|
|
|
// compilation error and I'm not sure how to create a comparable
|
|
|
|
// test. To ensure that this PARTICULAR failure doesn't occur
|
|
|
|
// again, though, I've left this test here, so if this ever starts
|
|
|
|
// to compile again, we can adjust the test appropriately (clearly
|
|
|
|
// it should never ICE...). -nmatsakis
|
|
|
|
inner(x) //~ ERROR mismatched types
|
2015-02-22 11:47:27 +00:00
|
|
|
}
|
|
|
|
|
2015-03-16 16:45:01 +00:00
|
|
|
pub fn inner(x: Option<&(Iterator<Item=()>+Send)>)
|
|
|
|
-> Option<&(Iterator<Item=()>+Send)> {
|
2015-02-22 11:47:27 +00:00
|
|
|
x
|
|
|
|
}
|
|
|
|
|
2018-10-30 23:18:11 +00:00
|
|
|
|
2015-02-17 10:17:19 +00:00
|
|
|
fn main() {}
|