rust/src/test/ui/resolve/issue-16058.rs

17 lines
275 B
Rust
Raw Normal View History

pub struct GslResult {
pub val: f64,
pub err: f64
}
impl GslResult {
pub fn new() -> GslResult {
Result {
//~^ ERROR expected struct, variant or union type, found enum `Result`
val: 0f64,
err: 0f64
}
}
}
fn main() {}