Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
5f6fa960c254dfda8ba1d5dc2fb281b6908d8005
/
.
/
tests
/
rustdoc-ui
/
invalid_associated_const.rs
blob: f93834268f63b89726515c1bfcd4e1376fc7bb59 [
file
]
#![
feature
(
associated_const_equality
)]
trait
T
{
type
A
:
S
<
C
<
X
=
0i32
>
=
34
>;
//~^ ERROR associated item constraints are not allowed here
//~| ERROR associated item constraints are not allowed here
}
trait
S
{
const
C
:
i32
;
}