Skip to content

Commit 2dd4e73

Browse files
committed
Auto merge of #65919 - Centril:rollup-qrgwnt6, r=Centril
Rollup of 5 pull requests Successful merges: - #65294 (Lint ignored `#[inline]` on function prototypes) - #65318 (Call out the types that are non local on E0117) - #65531 (Update backtrace to 0.3.40) - #65562 (Improve the "try using a variant of the expected type" hint.) - #65809 (Add new EFIAPI ABI) Failed merges: r? @ghost
2 parents cac6821 + 46063ed commit 2dd4e73

File tree

131 files changed

+1200
-590
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+1200
-590
lines changed

Cargo.lock

+9-8
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,9 @@ checksum = "b671c8fb71b457dd4ae18c4ba1e59aa81793daacc361d82fcd410cef0d491875"
115115

116116
[[package]]
117117
name = "backtrace"
118-
version = "0.3.37"
118+
version = "0.3.40"
119119
source = "registry+https://github.com/rust-lang/crates.io-index"
120-
checksum = "5180c5a20655b14a819b652fd2378fa5f1697b6c9ddad3e695c2f9cedf6df4e2"
120+
checksum = "924c76597f0d9ca25d762c25a4d369d51267536465dc5064bdf0eb073ed477ea"
121121
dependencies = [
122122
"backtrace-sys",
123123
"cfg-if",
@@ -129,9 +129,9 @@ dependencies = [
129129

130130
[[package]]
131131
name = "backtrace-sys"
132-
version = "0.1.30"
132+
version = "0.1.32"
133133
source = "registry+https://github.com/rust-lang/crates.io-index"
134-
checksum = "5b3a000b9c543553af61bc01cbfc403b04b5caa9e421033866f2e98061eb3e61"
134+
checksum = "5d6575f128516de27e3ce99689419835fce9643a9b215a14d2b5b685be018491"
135135
dependencies = [
136136
"cc",
137137
"compiler_builtins",
@@ -150,9 +150,9 @@ dependencies = [
150150

151151
[[package]]
152152
name = "bitflags"
153-
version = "1.1.0"
153+
version = "1.2.1"
154154
source = "registry+https://github.com/rust-lang/crates.io-index"
155-
checksum = "3d155346769a6855b86399e9bc3814ab343cd3d62c7e985113d46a0ec3c281fd"
155+
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
156156

157157
[[package]]
158158
name = "blake2-rfc"
@@ -391,9 +391,9 @@ version = "0.1.0"
391391

392392
[[package]]
393393
name = "cc"
394-
version = "1.0.35"
394+
version = "1.0.37"
395395
source = "registry+https://github.com/rust-lang/crates.io-index"
396-
checksum = "5e5f3fee5eeb60324c2781f1e41286bdee933850fff9b3c672587fed5ec58c83"
396+
checksum = "39f75544d7bbaf57560d2168f28fd649ff9c76153874db88bdbdfd839b1a7e7d"
397397

398398
[[package]]
399399
name = "cfg-if"
@@ -3113,6 +3113,7 @@ dependencies = [
31133113
"backtrace",
31143114
"bitflags",
31153115
"byteorder",
3116+
"cc",
31163117
"chalk-engine",
31173118
"fmt_macros",
31183119
"graphviz",

src/librustc/Cargo.toml

+6-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,12 @@ path = "lib.rs"
1010
doctest = false
1111

1212
[dependencies]
13+
# Prevent cc from upgrading all the way to 1.0.46,
14+
# which fails the build (see e.g. #65445.)
15+
cc = "=1.0.37"
16+
1317
arena = { path = "../libarena" }
14-
bitflags = "1.0"
18+
bitflags = "1.2.1"
1519
fmt_macros = { path = "../libfmt_macros" }
1620
graphviz = { path = "../libgraphviz" }
1721
jobserver = "0.1"
@@ -30,7 +34,7 @@ errors = { path = "../librustc_errors", package = "rustc_errors" }
3034
rustc_serialize = { path = "../libserialize", package = "serialize" }
3135
syntax = { path = "../libsyntax" }
3236
syntax_pos = { path = "../libsyntax_pos" }
33-
backtrace = "0.3.3"
37+
backtrace = "0.3.40"
3438
parking_lot = "0.9"
3539
byteorder = { version = "1.3" }
3640
chalk-engine = { version = "0.9.0", default-features=false }

src/librustc/error_codes.rs

+52-1
Original file line numberDiff line numberDiff line change
@@ -2219,7 +2219,7 @@ rejected in your own crates.
22192219
"##,
22202220

22212221
E0736: r##"
2222-
#[track_caller] and #[naked] cannot be applied to the same function.
2222+
`#[track_caller]` and `#[naked]` cannot both be applied to the same function.
22232223
22242224
Erroneous code example:
22252225
@@ -2237,6 +2237,57 @@ See [RFC 2091] for details on this and other limitations.
22372237
[RFC 2091]: https://github.com/rust-lang/rfcs/blob/master/text/2091-inline-semantic.md
22382238
"##,
22392239

2240+
E0738: r##"
2241+
`#[track_caller]` cannot be used in traits yet. This is due to limitations in
2242+
the compiler which are likely to be temporary. See [RFC 2091] for details on
2243+
this and other restrictions.
2244+
2245+
Erroneous example with a trait method implementation:
2246+
2247+
```compile_fail,E0738
2248+
#![feature(track_caller)]
2249+
2250+
trait Foo {
2251+
fn bar(&self);
2252+
}
2253+
2254+
impl Foo for u64 {
2255+
#[track_caller]
2256+
fn bar(&self) {}
2257+
}
2258+
```
2259+
2260+
Erroneous example with a blanket trait method implementation:
2261+
2262+
```compile_fail,E0738
2263+
#![feature(track_caller)]
2264+
2265+
trait Foo {
2266+
#[track_caller]
2267+
fn bar(&self) {}
2268+
fn baz(&self);
2269+
}
2270+
```
2271+
2272+
Erroneous example with a trait method declaration:
2273+
2274+
```compile_fail,E0738
2275+
#![feature(track_caller)]
2276+
2277+
trait Foo {
2278+
fn bar(&self) {}
2279+
2280+
#[track_caller]
2281+
fn baz(&self);
2282+
}
2283+
```
2284+
2285+
Note that while the compiler may be able to support the attribute in traits in
2286+
the future, [RFC 2091] prohibits their implementation without a follow-up RFC.
2287+
2288+
[RFC 2091]: https://github.com/rust-lang/rfcs/blob/master/text/2091-inline-semantic.md
2289+
"##,
2290+
22402291
;
22412292
// E0006, // merged with E0005
22422293
// E0101, // replaced with E0282

0 commit comments

Comments
 (0)