]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/feature-gate/issue-43106-gating-of-derive.rs
41c3d0ef561380b708e118065784f3b119f2784e
[rust.git] / src / test / compile-fail / feature-gate / issue-43106-gating-of-derive.rs
1 // Copyright 2017 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 // `#![derive]` is interpreted (and raises errors) when it occurs at
12 // contexts other than ADT definitions. This test checks cases where
13 // the derive-macro exists.
14
15 #![derive(Debug)]
16 //~^ ERROR `derive` may only be applied to structs, enums and unions
17
18 #[derive(Debug)]
19 //~^ ERROR `derive` may only be applied to structs, enums and unions
20 mod derive {
21     mod inner { #![derive(Debug)] }
22     //~^ ERROR `derive` may only be applied to structs, enums and unions
23
24     #[derive(Debug)]
25     //~^ ERROR `derive` may only be applied to structs, enums and unions
26     fn derive() { }
27
28     #[derive(Copy, Clone)] // (can't derive Debug for unions)
29     union U { f: i32 }
30
31     #[derive(Debug)]
32     struct S;
33
34     #[derive(Debug)]
35     enum E { }
36
37     #[derive(Debug)]
38     //~^ ERROR `derive` may only be applied to structs, enums and unions
39     type T = S;
40
41     #[derive(Debug)]
42     //~^ ERROR `derive` may only be applied to structs, enums and unions
43     impl S { }
44 }