rust/tests/ui/traits/bound/on-structs-and-enums-xc1.rs
2024-02-16 20:02:50 +00:00

16 lines
275 B
Rust

//@ aux-build:on_structs_and_enums_xc.rs
extern crate on_structs_and_enums_xc;
use on_structs_and_enums_xc::{Bar, Foo, Trait};
fn main() {
let foo = Foo {
x: 3
//~^ ERROR E0277
};
let bar: Bar<f64> = return;
//~^ ERROR E0277
let _ = bar;
}