Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
wf
/
issue-87495.rs
blob: 5aab7431134bab94564098761cc928e5215e1495 [
file
] [
log
] [
blame
] [
edit
]
// Regression test for the ICE described in #87495.
trait
T
{
const
CONST
:
(
bool
,
dyn T
);
//~^ ERROR: the trait `T` cannot be made into an object [E0038]
}
fn
main
()
{}