]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-31011.rs
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-31011.rs
1 // Copyright 2016 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 macro_rules! log {
12     ( $ctx:expr, $( $args:expr),* ) => {
13         if $ctx.trace {
14         //~^ no field `trace` on type `&T`
15             println!( $( $args, )* );
16         }
17     }
18 }
19
20 // Create a structure.
21 struct Foo {
22   trace: bool,
23 }
24
25 // Generic wrapper calls log! with a structure.
26 fn wrap<T>(context: &T) -> ()
27 {
28     log!(context, "entered wrapper");
29     //~^ in this expansion of log!
30 }
31
32 fn main() {
33     // Create a structure.
34     let x = Foo { trace: true };
35     log!(x, "run started");
36     // Apply a closure which accesses internal fields.
37     wrap(&x);
38     log!(x, "run finished");
39 }