about summary refs log tree commit diff
path: root/tests/ui/traits/alias/style_lint.stderr
blob: e11e51c018f6bbb962a48ee3920abb119e420474 (plain)
1
2
3
4
5
6
7
8
9
10
warning: trait alias `bar` should have an upper camel case name
  --> $DIR/style_lint.rs:6:7
   |
LL | trait bar = std::fmt::Display + std::fmt::Debug;
   |       ^^^ help: convert the identifier to upper camel case: `Bar`
   |
   = note: `#[warn(non_camel_case_types)]` (part of `#[warn(nonstandard_style)]`) on by default

warning: 1 warning emitted