Skip to content

Commit 9c432eb

Browse files
foobar
1 parent fab3984 commit 9c432eb

8 files changed

+21
-64
lines changed

tests/ui/symbol-names/basic.legacy.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
error: symbol-name(_ZN5basic4main17had874e876c8b1028E)
1+
error: symbol-name(_ZN5basic4main17h144191e1523a280eE)
22
--> $DIR/basic.rs:8:1
33
|
44
LL | #[rustc_symbol_name]
55
| ^^^^^^^^^^^^^^^^^^^^
66

7-
error: demangling(basic::main::had874e876c8b1028)
7+
error: demangling(basic::main::h144191e1523a280e)
88
--> $DIR/basic.rs:8:1
99
|
1010
LL | #[rustc_symbol_name]

tests/ui/symbol-names/issue-60925.legacy.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
error: symbol-name(_ZN11issue_609253foo37Foo$LT$issue_60925..llv$u6d$..Foo$GT$3foo17haf0d0ad2255e29c6E)
1+
error: symbol-name(_ZN11issue_609253foo37Foo$LT$issue_60925..llv$u6d$..Foo$GT$3foo17h71f988fda3b6b180E)
22
--> $DIR/issue-60925.rs:21:9
33
|
44
LL | #[rustc_symbol_name]
55
| ^^^^^^^^^^^^^^^^^^^^
66

7-
error: demangling(issue_60925::foo::Foo<issue_60925::llvm::Foo>::foo::haf0d0ad2255e29c6)
7+
error: demangling(issue_60925::foo::Foo<issue_60925::llvm::Foo>::foo::h71f988fda3b6b180)
88
--> $DIR/issue-60925.rs:21:9
99
|
1010
LL | #[rustc_symbol_name]

tests/ui/unsafe-binders/expr.rs

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
1+
//@ check-pass
2+
13
#![feature(unsafe_binders)]
24
//~^ WARN the feature `unsafe_binders` is incomplete
35

46
use std::unsafe_binder::{wrap_binder, unwrap_binder};
57

68
fn main() {
9+
unsafe {
710
let x = 1;
8-
let binder: unsafe<'a> &'a i32 = wrap_binder!(x);
9-
//~^ ERROR unsafe binders are not yet implemented
10-
//~| ERROR unsafe binders are not yet implemented
11-
let rx = *unwrap_binder!(binder);
12-
//~^ ERROR unsafe binders are not yet implemented
11+
let binder: unsafe<'a> &'a i32 = wrap_binder!(&x);
12+
let rx = *unwrap_binder!(binder);
13+
}
1314
}

tests/ui/unsafe-binders/expr.stderr

+2-20
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,11 @@
11
warning: the feature `unsafe_binders` is incomplete and may not be safe to use and/or cause compiler crashes
2-
--> $DIR/expr.rs:1:12
2+
--> $DIR/expr.rs:3:12
33
|
44
LL | #![feature(unsafe_binders)]
55
| ^^^^^^^^^^^^^^
66
|
77
= note: see issue #130516 <https://github.com/rust-lang/rust/issues/130516> for more information
88
= note: `#[warn(incomplete_features)]` on by default
99

10-
error: unsafe binders are not yet implemented
11-
--> $DIR/expr.rs:8:17
12-
|
13-
LL | let binder: unsafe<'a> &'a i32 = wrap_binder!(x);
14-
| ^^^^^^^^^^^^^^^^^^
15-
16-
error: unsafe binders are not yet implemented
17-
--> $DIR/expr.rs:8:51
18-
|
19-
LL | let binder: unsafe<'a> &'a i32 = wrap_binder!(x);
20-
| ^
21-
22-
error: unsafe binders are not yet implemented
23-
--> $DIR/expr.rs:11:30
24-
|
25-
LL | let rx = *unwrap_binder!(binder);
26-
| ^^^^^^
27-
28-
error: aborting due to 3 previous errors; 1 warning emitted
10+
warning: 1 warning emitted
2911

tests/ui/unsafe-binders/lifetime-resolution.rs

+2-5
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,13 @@
33

44
fn foo<'a>() {
55
let good: unsafe<'b> &'a &'b ();
6-
//~^ ERROR unsafe binders are not yet implemented
76

87
let missing: unsafe<> &'missing ();
9-
//~^ ERROR unsafe binders are not yet implemented
10-
//~| ERROR use of undeclared lifetime name `'missing`
8+
//~^ ERROR use of undeclared lifetime name `'missing`
119

1210
fn inner<'b>() {
1311
let outer: unsafe<> &'a &'b ();
14-
//~^ ERROR unsafe binders are not yet implemented
15-
//~| can't use generic parameters from outer item
12+
//~^ can't use generic parameters from outer item
1613
}
1714
}
1815

tests/ui/unsafe-binders/lifetime-resolution.stderr

+3-21
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error[E0261]: use of undeclared lifetime name `'missing`
2-
--> $DIR/lifetime-resolution.rs:8:28
2+
--> $DIR/lifetime-resolution.rs:7:28
33
|
44
LL | let missing: unsafe<> &'missing ();
55
| ^^^^^^^^ undeclared lifetime
@@ -15,7 +15,7 @@ LL | fn foo<'missing, 'a>() {
1515
| +++++++++
1616

1717
error[E0401]: can't use generic parameters from outer item
18-
--> $DIR/lifetime-resolution.rs:13:30
18+
--> $DIR/lifetime-resolution.rs:11:30
1919
|
2020
LL | fn foo<'a>() {
2121
| -- lifetime parameter from outer item
@@ -41,25 +41,7 @@ LL | #![feature(unsafe_binders)]
4141
= note: see issue #130516 <https://github.com/rust-lang/rust/issues/130516> for more information
4242
= note: `#[warn(incomplete_features)]` on by default
4343

44-
error: unsafe binders are not yet implemented
45-
--> $DIR/lifetime-resolution.rs:5:15
46-
|
47-
LL | let good: unsafe<'b> &'a &'b ();
48-
| ^^^^^^^^^^^^^^^^^^^^^
49-
50-
error: unsafe binders are not yet implemented
51-
--> $DIR/lifetime-resolution.rs:8:18
52-
|
53-
LL | let missing: unsafe<> &'missing ();
54-
| ^^^^^^^^^^^^^^^^^^^^^
55-
56-
error: unsafe binders are not yet implemented
57-
--> $DIR/lifetime-resolution.rs:13:20
58-
|
59-
LL | let outer: unsafe<> &'a &'b ();
60-
| ^^^^^^^^^^^^^^^^^^^
61-
62-
error: aborting due to 5 previous errors; 1 warning emitted
44+
error: aborting due to 2 previous errors; 1 warning emitted
6345

6446
Some errors have detailed explanations: E0261, E0401.
6547
For more information about an error, try `rustc --explain E0261`.

tests/ui/unsafe-binders/simple.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1+
//@ check-pass
2+
13
#![feature(unsafe_binders)]
24
//~^ WARN the feature `unsafe_binders` is incomplete
35

46
fn main() {
57
let x: unsafe<'a> &'a ();
6-
//~^ ERROR unsafe binders are not yet implemented
78
}

tests/ui/unsafe-binders/simple.stderr

+2-8
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,11 @@
11
warning: the feature `unsafe_binders` is incomplete and may not be safe to use and/or cause compiler crashes
2-
--> $DIR/simple.rs:1:12
2+
--> $DIR/simple.rs:3:12
33
|
44
LL | #![feature(unsafe_binders)]
55
| ^^^^^^^^^^^^^^
66
|
77
= note: see issue #130516 <https://github.com/rust-lang/rust/issues/130516> for more information
88
= note: `#[warn(incomplete_features)]` on by default
99

10-
error: unsafe binders are not yet implemented
11-
--> $DIR/simple.rs:5:12
12-
|
13-
LL | let x: unsafe<'a> &'a ();
14-
| ^^^^^^^^^^^^^^^^^
15-
16-
error: aborting due to 1 previous error; 1 warning emitted
10+
warning: 1 warning emitted
1711

0 commit comments

Comments
 (0)