File tree 4 files changed +21
-0
lines changed
collector/compile-benchmarks
4 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,8 @@ They mostly consist of real-world crates.
53
53
built with ` --features=stm32f410 ` to have faster benchmarking times.
54
54
- ** syn-1.0.89** : A library for parsing Rust code. An important part of the Rust
55
55
ecosystem.
56
+ - ** syn-2.0.101** : A library for parsing Rust code. An important part of the Rust
57
+ ecosystem.
56
58
- ** typenum-1.17.0** : A library that encodes integer computation within the trait system. Serves as
57
59
a stress test for the trait solver, but at the same time it is also a very popular crate.
58
60
- ** typenum-1.18.0** : A library that encodes integer computation within the trait system. Serves as
Original file line number Diff line number Diff line change @@ -240,6 +240,11 @@ path = "syn-1.0.89/**"
240
240
SPDX-FileCopyrightText = " syn contributors"
241
241
SPDX-License-Identifier = " MIT OR Apache-2.0"
242
242
243
+ [[annotations ]]
244
+ path = " syn-2.0.101/**"
245
+ SPDX-FileCopyrightText = " syn contributors"
246
+ SPDX-License-Identifier = " MIT OR Apache-2.0"
247
+
243
248
[[annotations ]]
244
249
path = " token-stream-stress/**"
245
250
SPDX-FileCopyrightText = " The Rust Project Developers (see https://thanks.rust-lang.org)"
Original file line number Diff line number Diff line change
1
+ diff --git a/src/lifetime.rs b/src/lifetime.rs
2
+ index cc189d1a..6a1c6ebb 100644
3
+ --- a/src/lifetime.rs
4
+ +++ b/src/lifetime.rs
5
+ @@ -36,6 +36,7 @@ impl Lifetime {
6
+ /// # }
7
+ /// ```
8
+ pub fn new(symbol: &str, span: Span) -> Self {
9
+ + println!("testing");
10
+ if !symbol.starts_with('\'') {
11
+ panic!(
12
+ "lifetime name must start with apostrophe as in \"'a\", got {:?}",
Original file line number Diff line number Diff line change @@ -269,3 +269,5 @@ version = "0.4.16"
269
269
270
270
[target ."cfg(not(miri))" .dev-dependencies .walkdir ]
271
271
version = " 2.3.2"
272
+
273
+ [workspace ]
You can’t perform that action at this time.
0 commit comments