about summary refs log tree commit diff
path: root/tests/ui/unknown-unstable-lints/warn-unknown-unstable-lint-inline.stderr
blob: 7d56b360837265f659cac8c57175b9ac96f4acb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
warning: unknown lint: `test_unstable_lint`
  --> $DIR/warn-unknown-unstable-lint-inline.rs:4:10
   |
LL | #![allow(test_unstable_lint)]
   |          ^^^^^^^^^^^^^^^^^^
   |
   = note: the `test_unstable_lint` lint is unstable
   = help: add `#![feature(test_unstable_lint)]` to the crate attributes to enable
   = note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
note: the lint level is defined here
  --> $DIR/warn-unknown-unstable-lint-inline.rs:3:9
   |
LL | #![warn(unknown_lints)]
   |         ^^^^^^^^^^^^^

warning: 1 warning emitted