rust/tests/ui/resolve/issue-16058.rs

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

19 lines
365 B
Rust
Raw Normal View History

2020-05-06 01:12:50 +00:00
// ignore-sgx std::os::fortanix_sgx::usercalls::raw::Result changes compiler suggestions
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() {}