2015-02-18 19:59:44 -06:00
|
|
|
// Copyright 2014 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.
|
|
|
|
|
2015-03-19 17:39:03 -05:00
|
|
|
// aux-build:struct_field_privacy.rs
|
2015-02-18 19:53:56 -06:00
|
|
|
|
2015-03-19 17:39:03 -05:00
|
|
|
extern crate struct_field_privacy as xc;
|
2015-02-18 19:53:56 -06:00
|
|
|
|
|
|
|
use xc::B;
|
|
|
|
|
2015-02-18 19:58:15 -06:00
|
|
|
struct A {
|
|
|
|
pub a: u32,
|
|
|
|
b: u32,
|
|
|
|
}
|
|
|
|
|
2015-02-18 19:53:56 -06:00
|
|
|
fn main () {
|
2015-02-18 19:58:15 -06:00
|
|
|
// external crate struct
|
2015-02-18 19:53:56 -06:00
|
|
|
let k = B {
|
2015-08-01 12:41:01 -05:00
|
|
|
aa: 20, //~ ERROR structure `xc::B` has no field named `aa`
|
2015-02-18 19:53:56 -06:00
|
|
|
//~^ HELP did you mean `a`?
|
2015-08-01 12:41:01 -05:00
|
|
|
bb: 20, //~ ERROR structure `xc::B` has no field named `bb`
|
2016-03-14 22:36:43 -05:00
|
|
|
//~^ HELP did you mean `a`?
|
2015-02-18 19:53:56 -06:00
|
|
|
};
|
2015-02-18 19:58:15 -06:00
|
|
|
// local crate struct
|
|
|
|
let l = A {
|
|
|
|
aa: 20, //~ ERROR structure `A` has no field named `aa`
|
|
|
|
//~^ HELP did you mean `a`?
|
|
|
|
bb: 20, //~ ERROR structure `A` has no field named `bb`
|
|
|
|
//~^ HELP did you mean `b`?
|
|
|
|
};
|
2015-02-18 19:53:56 -06:00
|
|
|
}
|