2022-06-07 22:54:15 +09:00
|
|
|
//@ edition:2018
|
|
|
|
|
|
|
|
|
|
// Regression test for #95307.
|
|
|
|
|
// The ICE occurred on all the editions, specifying edition:2018 to reduce diagnostics.
|
|
|
|
|
|
|
|
|
|
pub trait C {
|
|
|
|
|
async fn new() -> [u8; _];
|
2025-01-02 18:49:43 +00:00
|
|
|
//~^ ERROR: the placeholder `_` is not allowed within types on item signatures for functions
|
|
|
|
|
//~| ERROR using `_` for array lengths is unstable
|
2022-06-07 22:54:15 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {}
|