]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/unknown_tool_attributes-1.rs
Unify API of `Scalar` and `ScalarMaybeUndef`
[rust.git] / src / test / compile-fail / unknown_tool_attributes-1.rs
1 // Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // Make sure that 'custom_attributes' feature does not allow scoped attributes.
12
13 #![feature(custom_attributes)]
14
15 #[foo::bar]
16 //~^ ERROR scoped attribute `foo::bar` is experimental (see issue #44690) [E0658]
17 //~^^ ERROR an unknown tool name found in scoped attribute: `foo::bar`. [E0694]
18 fn main() {}