rust/tests/ui/feature-gates/feature-gate-unsized_fn_params.rs
Esteban Küber 8c3a033d7f Add edition checks for some tests that had divergent output
In order to expose edition dependent divergences in some tests in the test suite, add explicit `edition` annotations. Some of these tests might require additional work to *avoid* the divergences, as they might have been unintentional. These are not exhaustive changes, purely opportunistic while looking at something else.
2025-06-25 17:02:26 +00:00

36 lines
623 B
Rust

//@revisions: edition2015 edition2021
//@[edition2015] edition:2015
//@[edition2021] edition:2021
#![allow(unused, bare_trait_objects)]
#[repr(align(256))]
struct A {
v: u8,
}
trait Foo {
fn foo(&self);
}
impl Foo for A {
fn foo(&self) {
assert_eq!(self as *const A as usize % 256, 0);
}
}
fn foo(x: dyn Foo) { //~ ERROR [E0277]
x.foo()
}
fn bar(x: Foo) {
//[edition2015]~^ ERROR [E0277]
//[edition2021]~^^ ERROR expected a type, found a trait
x.foo()
}
fn qux(_: [()]) {} //~ ERROR [E0277]
fn main() {
let x: Box<dyn Foo> = Box::new(A { v: 22 });
foo(*x); //~ ERROR [E0277]
}