Files
rust/tests/rustdoc-ui/issues/ice-bare-dyn-106213.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
224 B
Rust
Raw Normal View History

//@ compile-flags: --document-private-items
//@ edition:2021
2024-12-08 21:39:48 -07:00
// https://github.com/rust-lang/rust/issues/106213
fn use_avx() -> dyn {
//~^ ERROR at least one trait is required for an object type
!( ident_error )
}