Skip to content

Commit 12a6cf1

Browse files
committed
Allow path fragments to be parsed as type parameter bounds in macro expansion
1 parent d250169 commit 12a6cf1

File tree

4 files changed

+65
-1
lines changed

4 files changed

+65
-1
lines changed

src/libsyntax/parse/parser.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4173,7 +4173,7 @@ impl<'a> Parser<'a> {
41734173
}));
41744174
self.bump();
41754175
}
4176-
token::ModSep | token::Ident(..) => {
4176+
_ if self.token.is_path_start() || self.token.is_keyword(keywords::For) => {
41774177
let poly_trait_ref = self.parse_poly_trait_ref()?;
41784178
let modifier = if ate_question {
41794179
TraitBoundModifier::Maybe

src/test/run-pass/issue-8521.rs

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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+
trait Foo1 {}
12+
13+
trait A {}
14+
15+
macro_rules! foo1(($t:path) => {
16+
impl<T: $t> Foo1 for T {}
17+
});
18+
19+
foo1!(A);
20+
21+
trait Foo2 {}
22+
23+
trait B<T> {}
24+
25+
#[allow(unused)]
26+
struct C {}
27+
28+
macro_rules! foo2(($t:path) => {
29+
impl<T: $t> Foo2 for T {}
30+
});
31+
32+
foo2!(B<C>);
33+
34+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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+
trait Foo {}
12+
13+
macro_rules! foo(($t:path) => {
14+
impl<T: $t> Foo for T {}
15+
});
16+
17+
foo!(m::m2::A);
18+
19+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
error[E0433]: failed to resolve. Use of undeclared type or module `m`
2+
--> $DIR/macro_path_as_generic_bound.rs:17:6
3+
|
4+
17 | foo!(m::m2::A);
5+
| -----^^^^^^^^--
6+
| | |
7+
| | Use of undeclared type or module `m`
8+
| in this macro invocation
9+
10+
error: cannot continue compilation due to previous error
11+

0 commit comments

Comments
 (0)