Support nested cfg_attr
attributes
This commit is contained in:
parent
7d2f75a953
commit
65d256e82a
2 changed files with 15 additions and 1 deletions
|
@ -78,7 +78,7 @@ impl<'a> StripUnconfigured<'a> {
|
||||||
};
|
};
|
||||||
|
|
||||||
if attr::cfg_matches(self.config, &cfg, &mut self.diag) {
|
if attr::cfg_matches(self.config, &cfg, &mut self.diag) {
|
||||||
Some(respan(mi.span, ast::Attribute_ {
|
self.process_cfg_attr(respan(mi.span, ast::Attribute_ {
|
||||||
id: attr::mk_attr_id(),
|
id: attr::mk_attr_id(),
|
||||||
style: attr.node.style,
|
style: attr.node.style,
|
||||||
value: mi.clone(),
|
value: mi.clone(),
|
||||||
|
|
14
src/test/compile-fail/nested-cfg-attrs.rs
Normal file
14
src/test/compile-fail/nested-cfg-attrs.rs
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
|
||||||
|
// file at the top-level directory of this distribution and at
|
||||||
|
// http://rust-lang.org/COPYRIGHT.
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
||||||
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
||||||
|
// option. This file may not be copied, modified, or distributed
|
||||||
|
// except according to those terms.
|
||||||
|
|
||||||
|
#[cfg_attr(all(), cfg_attr(all(), cfg(foo)))]
|
||||||
|
fn f() {}
|
||||||
|
|
||||||
|
fn main() { f() } //~ ERROR unresolved name `f`
|
Loading…
Add table
Reference in a new issue