rust/tests/ui/error-codes/E0283.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
529 B
Rust
Raw Normal View History

2016-08-05 20:18:01 +00:00
trait Generator {
fn create() -> u32;
}
struct Impl;
impl Generator for Impl {
fn create() -> u32 { 1 }
}
2021-01-15 13:33:51 +00:00
impl Impl {
fn new() -> Self {
Impl{}
}
}
impl Into<u32> for Impl {
fn into(self) -> u32 { 1 }
}
fn foo(bar: u32) {}
2016-08-05 20:18:01 +00:00
struct AnotherImpl;
impl Generator for AnotherImpl {
fn create() -> u32 { 2 }
}
fn main() {
let cont: u32 = Generator::create(); //~ ERROR E0790
2016-08-05 20:18:01 +00:00
}
2021-01-15 13:33:51 +00:00
fn buzz() {
let foo_impl = Impl::new();
let bar = foo_impl.into() * 1u32; //~ ERROR E0283
foo(bar);
}