Rustup to rustc 1.61.0-nightly (63b8f01bb 2022-03-24)

This commit is contained in:
bjorn3 2022-03-25 17:28:39 +01:00
parent 90999c4e9f
commit e336e1bccf
2 changed files with 4 additions and 1 deletions

View File

@ -16,6 +16,9 @@
#[lang = "sized"]
pub trait Sized {}
#[lang = "destruct"]
pub trait Destruct {}
#[lang = "unsize"]
pub trait Unsize<T: ?Sized> {}

View File

@ -1,3 +1,3 @@
[toolchain]
channel = "nightly-2022-03-22"
channel = "nightly-2022-03-25"
components = ["rust-src", "rustc-dev", "llvm-tools-preview"]