]> git.lizzy.rs Git - rust.git/blob - src/test/ui/wf/issue-87495.rs
Permit `#[deprecated]` in stdlib
[rust.git] / src / test / ui / wf / issue-87495.rs
1 // Regression test for the ICE described in #87495.
2
3 trait T {
4     const CONST: (bool, dyn T);
5     //~^ ERROR: the trait `T` cannot be made into an object [E0038]
6 }
7
8 fn main() {}