This commit is contained in:
Deadbeef 2021-09-02 09:02:19 +00:00
parent 4eab5c1f7b
commit f0a52128ee
No known key found for this signature in database
GPG key ID: 027DF9338862ADDD
3 changed files with 20 additions and 21 deletions

View file

@ -20,7 +20,7 @@ const fn check<T: ~const Drop>() {}
macro_rules! check_all {
($($T:ty),*$(,)?) => {$(
const _: () = check::<$T>();
const _: () = check::<$T>();
)*};
}