Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
traits
/
alias
/
style_lint.rs
blob: 51c3a5aa77329c0263728bbfb10e2aff8f434812 [
file
] [
log
] [
blame
]
//@ check-pass
#![
feature
(
trait_alias
)]
trait
Foo
=
std
::
fmt
::
Display
+
std
::
fmt
::
Debug
;
trait
bar
=
std
::
fmt
::
Display
+
std
::
fmt
::
Debug
;
//~WARN trait alias `bar` should have an upper camel case name
fn
main
()
{}