-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #33161 - jseyfried:parse_tuple_struct_field_vis, r=niko…
…matsakis Parse `pub(restricted)` visibilities on tuple struct fields Parse `pub(restricted)` on tuple struct fields (cc #32409). r? @nikomatsakis
- Loading branch information
Showing
5 changed files
with
108 additions
and
7 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
18 changes: 18 additions & 0 deletions
18
src/test/compile-fail/privacy/restricted/tuple-struct-fields/test.rs
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,18 @@ | ||
// 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. | ||
|
||
#![feature(pub_restricted, type_macros)] | ||
|
||
mod foo { | ||
type T = (); | ||
struct S1(pub(foo) (), pub(T), pub(crate) (), pub(((), T))); | ||
struct S2(pub((foo)) ()); //~ ERROR expected one of `+` or `,`, found `(` | ||
//~| ERROR expected one of `+`, `;`, or `where`, found `(` | ||
} |
24 changes: 24 additions & 0 deletions
24
src/test/compile-fail/privacy/restricted/tuple-struct-fields/test2.rs
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,24 @@ | ||
// 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. | ||
|
||
#![feature(pub_restricted, type_macros)] | ||
|
||
macro_rules! define_struct { | ||
($t:ty) => { | ||
struct S1(pub $t); | ||
struct S2(pub (foo) ()); | ||
struct S3(pub $t ()); //~ ERROR expected one of `+` or `,`, found `(` | ||
//~| ERROR expected one of `+`, `;`, or `where`, found `(` | ||
} | ||
} | ||
|
||
mod foo { | ||
define_struct! { (foo) } | ||
} |
24 changes: 24 additions & 0 deletions
24
src/test/compile-fail/privacy/restricted/tuple-struct-fields/test3.rs
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,24 @@ | ||
// 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. | ||
|
||
#![feature(pub_restricted, type_macros)] | ||
|
||
macro_rules! define_struct { | ||
($t:ty) => { | ||
struct S1(pub($t)); | ||
struct S2(pub (foo) ()); | ||
struct S3(pub($t) ()); //~ ERROR expected one of `+` or `,`, found `(` | ||
//~| ERROR expected one of `+`, `;`, or `where`, found `(` | ||
} | ||
} | ||
|
||
mod foo { | ||
define_struct! { foo } | ||
} |
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