2016-08-24 13:10:19 -05:00
|
|
|
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
union U {
|
2016-08-26 11:23:42 -05:00
|
|
|
principal: u8,
|
2016-08-24 13:10:19 -05:00
|
|
|
}
|
|
|
|
|
2016-08-26 11:23:42 -05:00
|
|
|
impl U {
|
|
|
|
fn calculate(&self) {}
|
2016-08-24 13:10:19 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2016-09-04 14:14:41 -05:00
|
|
|
let u = U { principle: 0 };
|
|
|
|
//~^ ERROR union `U` has no field named `principle`
|
2016-09-15 23:10:32 -05:00
|
|
|
//~| NOTE field does not exist - did you mean `principal`?
|
2016-09-28 04:27:23 -05:00
|
|
|
let w = u.principial; //~ ERROR no field `principial` on type `U`
|
|
|
|
//~^ did you mean `principal`?
|
2016-08-26 11:23:42 -05:00
|
|
|
|
|
|
|
let y = u.calculate; //~ ERROR attempted to take value of method `calculate` on type `U`
|
|
|
|
//~^ HELP maybe a `()` to call it is missing?
|
2016-08-24 13:10:19 -05:00
|
|
|
}
|