-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #51519 - ExpHP:issue-51331-b, r=petrochenkov
Fix for $crate var normalization in proc macro for externally defined macros Fixes #51331, a bug that has existed in at least *some* form for a year and a half. The PR includes the addition of a `fold_qpath` method to `syntax::fold::Folder`. Overriding this method is useful for folds that modify paths in a way that invalidates indices (insertion or removal of a component), as it provides the opportunity to update `qself.position` in `<A as B>::C` paths. I added it because the bugfix is messy without it. (unfortunately, grepping around the codebase, I did not see anything else that could use it.)
- Loading branch information
Showing
5 changed files
with
147 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 51 additions & 0 deletions
51
src/test/run-pass-fulldeps/proc-macro/auxiliary/external-crate-var.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
// 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. | ||
|
||
pub struct ExternFoo; | ||
|
||
pub trait ExternTrait { | ||
const CONST: u32; | ||
type Assoc; | ||
} | ||
|
||
impl ExternTrait for ExternFoo { | ||
const CONST: u32 = 0; | ||
type Assoc = ExternFoo; | ||
} | ||
|
||
#[macro_export] | ||
macro_rules! external { () => { | ||
mod bar { | ||
#[derive(Double)] | ||
struct Bar($crate::ExternFoo); | ||
} | ||
|
||
mod qself { | ||
#[derive(Double)] | ||
struct QSelf(<$crate::ExternFoo as $crate::ExternTrait>::Assoc); | ||
} | ||
|
||
mod qself_recurse { | ||
#[derive(Double)] | ||
struct QSelfRecurse(< | ||
<$crate::ExternFoo as $crate::ExternTrait>::Assoc | ||
as $crate::ExternTrait>::Assoc | ||
); | ||
} | ||
|
||
mod qself_in_const { | ||
#[derive(Double)] | ||
#[repr(u32)] | ||
enum QSelfInConst { | ||
Variant = <$crate::ExternFoo as $crate::ExternTrait>::CONST, | ||
} | ||
} | ||
} } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters