Skip to content
This repository was archived by the owner on May 23, 2024. It is now read-only.

Commit 2adb76f

Browse files
authored
Merge pull request #1300 from matthiaskrgr/_
add rust-lang/rust#97946
2 parents 3f86df2 + 69629d9 commit 2adb76f

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

ices/97946.rs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
struct A<T> {
2+
inner: T
3+
}
4+
5+
impl <T> A<T> {
6+
thread_local! {
7+
static MY_STATIC: Option<T> = None;
8+
}
9+
}
10+
11+
fn main() {}

0 commit comments

Comments
 (0)