Sign in
rust
/
rust
/
HEAD
/
.
/
tests
/
ui
/
associated-inherent-types
/
style.rs
blob: 8775bd19e1f98c3dbefdd338c05ab69570c2d6ac [
file
] [
log
] [
blame
]
#![
feature
(
inherent_associated_types
)]
#![
allow
(
incomplete_features
,
dead_code
)]
#![
deny
(
non_camel_case_types
)]
struct
S
;
impl
S
{
type
typ
=
();
//~^ ERROR associated type `typ` should have an upper camel case name
}
fn
main
()
{}