forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
name struct in "field
...
is private" error
- Loading branch information
Showing
10 changed files
with
135 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// 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. | ||
|
||
#![feature(struct_variant)] | ||
|
||
pub enum Foo { | ||
Bar { | ||
baz: int | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
// 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. | ||
|
||
// aux-build:privacy-struct-variant.rs | ||
|
||
#![feature(struct_variant)] | ||
|
||
extern crate other = "privacy-struct-variant"; | ||
|
||
mod a { | ||
pub enum Foo { | ||
Bar { | ||
baz: int | ||
} | ||
} | ||
|
||
fn test() { | ||
let foo = Bar { baz: 42 }; | ||
|
||
let Bar { baz: _ } = foo; | ||
match foo { Bar { baz: _ } => {} } | ||
} | ||
} | ||
|
||
fn main() { | ||
let foo = a::Bar { baz: 42 }; | ||
//~^ ERROR: field `baz` of variant `Bar` of enum `a::Foo` is private | ||
|
||
let a::Bar { baz: _ } = foo; | ||
//~^ ERROR: field `baz` of variant `Bar` of enum `a::Foo` is private | ||
match foo { a::Bar { baz: _ } => {} } | ||
//~^ ERROR: field `baz` of variant `Bar` of enum `a::Foo` is private | ||
// | ||
let foo = other::Bar { baz: 42 }; | ||
//~^ ERROR: field `baz` of variant `Bar` of enum `privacy-struct-variant::Foo` is private | ||
|
||
let other::Bar { baz: _ } = foo; | ||
//~^ ERROR: field `baz` of variant `Bar` of enum `privacy-struct-variant::Foo` is private | ||
match foo { other::Bar { baz: _ } => {} } | ||
//~^ ERROR: field `baz` of variant `Bar` of enum `privacy-struct-variant::Foo` is private | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters