Skip to content

Commit 43a25a5

Browse files
committed
Auto merge of rust-lang#128440 - oli-obk:defines, r=lcnr
Add `#[define_opaques]` attribute and require it for all type-alias-impl-trait sites that register a hidden type Instead of relying on the signature of items to decide whether they are constraining an opaque type, the opaque types that the item constrains must be explicitly listed. A previous version of this PR used an actual attribute, but had to keep the resolved `DefId`s in a side table. Now we just lower to fields in the AST that have no surface syntax, instead a builtin attribute macro fills in those fields where applicable. Note that for convenience referencing opaque types in associated types from associated methods on the same impl will not require an attribute. If that causes problems `#[defines()]` can be used to overwrite the default of searching for opaques in the signature. One wart of this design is that closures and static items do not have generics. So since I stored the opaques in the generics of functions, consts and methods, I would need to add a custom field to closures and statics to track this information. During a T-types discussion we decided to just not do this for now. fixes rust-lang#131298
2 parents 5a44fff + d9de940 commit 43a25a5

File tree

1 file changed

+11
-13
lines changed

1 file changed

+11
-13
lines changed

example/issue-72793.rs

+11-13
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,21 @@
22

33
#![feature(type_alias_impl_trait)]
44

5-
mod helper {
6-
pub trait T {
7-
type Item;
8-
}
5+
pub trait T {
6+
type Item;
7+
}
98

10-
pub type Alias<'a> = impl T<Item = &'a ()>;
9+
pub type Alias<'a> = impl T<Item = &'a ()>;
1110

12-
struct S;
13-
impl<'a> T for &'a S {
14-
type Item = &'a ();
15-
}
11+
struct S;
12+
impl<'a> T for &'a S {
13+
type Item = &'a ();
14+
}
1615

17-
pub fn filter_positive<'a>() -> Alias<'a> {
18-
&S
19-
}
16+
#[define_opaque(Alias)]
17+
pub fn filter_positive<'a>() -> Alias<'a> {
18+
&S
2019
}
21-
use helper::*;
2220

2321
fn with_positive(fun: impl Fn(Alias<'_>)) {
2422
fun(filter_positive());

0 commit comments

Comments
 (0)