Sign in
android
/
toolchain
/
rustc
/
2f3fdfeb95384b9046ea35b3532e23c652eca660
/
.
/
src
/
test
/
ui
/
traits
/
alias
/
style_lint.rs
blob: 33be20054b5d3bba5b6218d9b59fcf3fee191fe4 [
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
()
{}