Sign in
fuchsia
/
third_party
/
rust
/
5a2fceefd312ec027bdeaa89ebefbe4c33d94de1
/
.
/
tests
/
ui
/
wf
/
issue-87495.rs
blob: ce5c617bbbd380c7620ad5544dc2c9ccdef278e0 [
file
]
// Regression test for the ICE described in #87495.
trait
T
{
const
CONST
:
(
bool
,
dyn T
);
//~^ ERROR: the trait `T` is not dyn compatible [E0038]
}
fn
main
()
{}