diff options
| author | bjorn3 <bjorn3@users.noreply.github.com> | 2022-03-25 17:28:39 +0100 |
|---|---|---|
| committer | bjorn3 <bjorn3@users.noreply.github.com> | 2022-03-25 17:28:39 +0100 |
| commit | e336e1bccf3831097283469243b0228accea85d4 (patch) | |
| tree | a52b2859fb016ddf415a312a8b75c4b6d6854cd3 | |
| parent | 90999c4e9fb6642173d1c0d0bb318380fe807519 (diff) | |
Rustup to rustc 1.61.0-nightly (63b8f01bb 2022-03-24)
| -rw-r--r-- | example/mini_core.rs | 3 | ||||
| -rw-r--r-- | rust-toolchain | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/example/mini_core.rs b/example/mini_core.rs index 7efc8dc785a..956bed3ccd8 100644 --- a/example/mini_core.rs +++ b/example/mini_core.rs @@ -16,6 +16,9 @@ #[lang = "sized"] pub trait Sized {} +#[lang = "destruct"] +pub trait Destruct {} + #[lang = "unsize"] pub trait Unsize<T: ?Sized> {} diff --git a/rust-toolchain b/rust-toolchain index cf3fff23a2a..cd8c5f8fb79 100644 --- a/rust-toolchain +++ b/rust-toolchain @@ -1,3 +1,3 @@ [toolchain] -channel = "nightly-2022-03-22" +channel = "nightly-2022-03-25" components = ["rust-src", "rustc-dev", "llvm-tools-preview"] |
