Vendor dependencies
Let's see how I like this workflow.
This commit is contained in:
parent
34d1830413
commit
9c435dc440
7500 changed files with 1665121 additions and 99 deletions
13
vendor/bitflags/tests/compile-fail/visibility/private_field.rs
vendored
Normal file
13
vendor/bitflags/tests/compile-fail/visibility/private_field.rs
vendored
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
mod example {
|
||||
use bitflags::bitflags;
|
||||
|
||||
bitflags! {
|
||||
pub struct Flags1: u32 {
|
||||
const FLAG_A = 0b00000001;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn main() {
|
||||
let flag1 = example::Flags1::FLAG_A.bits;
|
||||
}
|
||||
10
vendor/bitflags/tests/compile-fail/visibility/private_field.stderr.beta
vendored
Normal file
10
vendor/bitflags/tests/compile-fail/visibility/private_field.stderr.beta
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
error[E0616]: field `bits` of struct `Flags1` is private
|
||||
--> $DIR/private_field.rs:12:41
|
||||
|
|
||||
12 | let flag1 = example::Flags1::FLAG_A.bits;
|
||||
| ^^^^ private field
|
||||
|
|
||||
help: a method `bits` also exists, call it with parentheses
|
||||
|
|
||||
12 | let flag1 = example::Flags1::FLAG_A.bits();
|
||||
| ^^
|
||||
18
vendor/bitflags/tests/compile-fail/visibility/private_flags.rs
vendored
Normal file
18
vendor/bitflags/tests/compile-fail/visibility/private_flags.rs
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
mod example {
|
||||
use bitflags::bitflags;
|
||||
|
||||
bitflags! {
|
||||
pub struct Flags1: u32 {
|
||||
const FLAG_A = 0b00000001;
|
||||
}
|
||||
|
||||
struct Flags2: u32 {
|
||||
const FLAG_B = 0b00000010;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn main() {
|
||||
let flag1 = example::Flags1::FLAG_A;
|
||||
let flag2 = example::Flags2::FLAG_B;
|
||||
}
|
||||
18
vendor/bitflags/tests/compile-fail/visibility/private_flags.stderr.beta
vendored
Normal file
18
vendor/bitflags/tests/compile-fail/visibility/private_flags.stderr.beta
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
error[E0603]: struct `Flags2` is private
|
||||
--> $DIR/private_flags.rs:17:26
|
||||
|
|
||||
17 | let flag2 = example::Flags2::FLAG_B;
|
||||
| ^^^^^^ private struct
|
||||
|
|
||||
note: the struct `Flags2` is defined here
|
||||
--> $DIR/private_flags.rs:4:5
|
||||
|
|
||||
4 | / bitflags! {
|
||||
5 | | pub struct Flags1: u32 {
|
||||
6 | | const FLAG_A = 0b00000001;
|
||||
7 | | }
|
||||
... |
|
||||
11 | | }
|
||||
12 | | }
|
||||
| |_____^
|
||||
= note: this error originates in the macro `bitflags` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
9
vendor/bitflags/tests/compile-fail/visibility/pub_const.rs
vendored
Normal file
9
vendor/bitflags/tests/compile-fail/visibility/pub_const.rs
vendored
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
use bitflags::bitflags;
|
||||
|
||||
bitflags! {
|
||||
pub struct Flags1: u32 {
|
||||
pub const FLAG_A = 0b00000001;
|
||||
}
|
||||
}
|
||||
|
||||
fn main() {}
|
||||
5
vendor/bitflags/tests/compile-fail/visibility/pub_const.stderr.beta
vendored
Normal file
5
vendor/bitflags/tests/compile-fail/visibility/pub_const.stderr.beta
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
error: no rules expected the token `pub`
|
||||
--> $DIR/pub_const.rs:5:9
|
||||
|
|
||||
5 | pub const FLAG_A = 0b00000001;
|
||||
| ^^^ no rules expected this token in macro call
|
||||
Loading…
Add table
Add a link
Reference in a new issue