mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
19 lines
365 B
Rust
19 lines
365 B
Rust
// 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() {}
|