diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2025-02-07 18:26:25 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-07 18:26:25 +0100 |
| commit | cbd44d799800257146d0baa6ec56d9c8a8835b88 (patch) | |
| tree | 58522189010c0fe5ebecc6e730a37628f936efca /tests/codegen | |
| parent | 64e06c0f5578829373743884b708d494136c3e8f (diff) | |
| parent | 491599569c081985d6cc3eb4ab55d692e380e938 (diff) | |
| download | rust-cbd44d799800257146d0baa6ec56d9c8a8835b88.tar.gz rust-cbd44d799800257146d0baa6ec56d9c8a8835b88.zip | |
Rollup merge of #134367 - WaffleLapkin:trait_upcasting_as_a_treat, r=compiler-errors
Stabilize `feature(trait_upcasting)` This feature was "done" for a while now, I think it's finally time to stabilize it! Stabilization report: https://github.com/rust-lang/rust/pull/134367#issuecomment-2545839841. cc reference PR: https://github.com/rust-lang/reference/pull/1622. Closes #65991 (tracking issue), closes #89460 (the lint is no longer future incompat). r? compiler-errors
Diffstat (limited to 'tests/codegen')
| -rw-r--r-- | tests/codegen/vtable-upcast.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/codegen/vtable-upcast.rs b/tests/codegen/vtable-upcast.rs index ae7b4bf7aee..9e13e8dd68a 100644 --- a/tests/codegen/vtable-upcast.rs +++ b/tests/codegen/vtable-upcast.rs @@ -2,7 +2,6 @@ //@ compile-flags: -C no-prepopulate-passes -Copt-level=0 #![crate_type = "lib"] -#![feature(trait_upcasting)] pub trait Base { fn base(&self); |
