Add a test for #2144
This commit is contained in:
parent
ba8233d361
commit
8685cdadda
@ -269,3 +269,6 @@ pub(crate) struct Foo();
|
||||
|
||||
// #2125
|
||||
pub struct ReadinessCheckRegistry(Mutex<HashMap<Arc<String>, Box<Fn() -> ReadinessCheck + Sync + Send>>>);
|
||||
|
||||
// #2144 unit struct with generics
|
||||
struct MyBox<T:?Sized>;
|
||||
|
@ -313,3 +313,6 @@ pub(crate) struct Foo();
|
||||
pub struct ReadinessCheckRegistry(
|
||||
Mutex<HashMap<Arc<String>, Box<Fn() -> ReadinessCheck + Sync + Send>>>,
|
||||
);
|
||||
|
||||
// #2144 unit struct with generics
|
||||
struct MyBox<T: ?Sized>;
|
||||
|
Loading…
x
Reference in New Issue
Block a user