2025-01-21 09:17:40 +00:00
|
|
|
//! Regression test for ICE https://github.com/rust-lang/rust/issues/135730
|
|
|
|
|
//! This used
|
|
|
|
|
|
|
|
|
|
use std::future::Future;
|
|
|
|
|
fn foo() -> impl ?Future<Output = impl Send> {
|
2025-06-19 18:41:57 +02:00
|
|
|
//~^ ERROR: bound modifier `?` can only be applied to `Sized`
|
|
|
|
|
//~| ERROR: bound modifier `?` can only be applied to `Sized`
|
2025-01-21 09:17:40 +00:00
|
|
|
()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn main() {}
|