diff options
| author | Deadbeef <ent3rm4n@gmail.com> | 2024-06-25 10:44:00 +0000 |
|---|---|---|
| committer | Deadbeef <ent3rm4n@gmail.com> | 2024-06-28 10:57:35 +0000 |
| commit | 8b2fac9612e3840f9736bed31502b3b91ba01a08 (patch) | |
| tree | b584c8dd590d17368c0cd116a48485234f46623a /tests/rustdoc | |
| parent | 0a2330630d223ac3601a7b53e65e0d5867b60c2c (diff) | |
| download | rust-8b2fac9612e3840f9736bed31502b3b91ba01a08.tar.gz rust-8b2fac9612e3840f9736bed31502b3b91ba01a08.zip | |
finishing touches, move fixed ICEs to ui tests
Diffstat (limited to 'tests/rustdoc')
| -rw-r--r-- | tests/rustdoc/rfc-2632-const-trait-impl.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/rustdoc/rfc-2632-const-trait-impl.rs b/tests/rustdoc/rfc-2632-const-trait-impl.rs index f6a5555dbad..eb3e00af3b0 100644 --- a/tests/rustdoc/rfc-2632-const-trait-impl.rs +++ b/tests/rustdoc/rfc-2632-const-trait-impl.rs @@ -8,7 +8,8 @@ // // FIXME(effects) add `const_trait` to `Fn` so we use `~const` // FIXME(effects) restore `const_trait` to `Destruct` -#![feature(const_trait_impl)] +#![allow(incomplete_features)] +#![feature(const_trait_impl, effects)] #![crate_name = "foo"] use std::marker::Destruct; |
