Closed
Description
This ICEs (see title) because of the call:
extern {
fn foo(...);
}
fn main() {
unsafe { foo(1, 2, 3); }
}
That's because the definition of foo
errored in 1.34, but doesn't since 1.35:
extern {
fn foo(...);
}
cc @dlrobertson (found while working on #44930 (comment))