File tree Expand file tree Collapse file tree 3 files changed +16
-2
lines changed Expand file tree Collapse file tree 3 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ They mostly consist of real-world crates.
41
41
Rust programs.
42
42
- ** stm32f4** : A crate that has many thousands of blanket impl blocks.
43
43
- ** stm32f4-0.14.0** : A crate that has many thousands of blanket impl blocks.
44
- - ** syn** : A library for parsing Rust code. An important part of the Rust
44
+ - ** syn-1.0.89 ** : A library for parsing Rust code. An important part of the Rust
45
45
ecosystem.
46
46
- ** unicode_normalization** : Unicode character composition and decomposition
47
47
utilities. Uses huge ` match ` statements that stress the compiler in unusual
@@ -143,6 +143,6 @@ Rust code being written today.
143
143
- ** piston-image** : See above.
144
144
- ** style-servo** : An old version of Servo's ` style ` crate. A large crate, and
145
145
one used by old versions of Firefox.
146
- - ** syn** : See above.
146
+ - ** syn** : See above. This is an older version (0.11.11) of the crate.
147
147
- ** tokio-webpush-simple** : A simple web server built with a very old version
148
148
of tokio. Uses futures a lot, but doesn't use ` async ` /` await ` .
Original file line number Diff line number Diff line change
1
+ diff --git a/src/lifetime.rs b/src/lifetime.rs
2
+ index 5dc1753a..61f28dde 100644
3
+ --- a/src/lifetime.rs
4
+ +++ b/src/lifetime.rs
5
+ @@ -37,6 +37,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 @@ -135,3 +135,5 @@ proc-macro = [
135
135
test = [" syn-test-suite/all-features" ]
136
136
visit = []
137
137
visit-mut = []
138
+
139
+ [workspace ]
You can’t perform that action at this time.
0 commit comments