Skip to content

Commit 9dbfcbc

Browse files
committed
pessimistically treat all function items as containing an opaque type
1 parent 493c960 commit 9dbfcbc

File tree

7 files changed

+63
-4
lines changed

7 files changed

+63
-4
lines changed

compiler/rustc_middle/src/ty/flags.rs

+5
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,11 @@ impl FlagComputation {
207207

208208
&ty::FnDef(_, substs) => {
209209
self.add_substs(substs);
210+
// HACK(#98608, oli-obk): Function items with opaque types in their signature will
211+
// end up not having the HAS_TY_OPAQUE flag set, causing `evaluate_obligation` to
212+
// optimistically assume the function item matches any signature. See documentation
213+
// on `HAS_FREE_LOCAL_NAMES` for details.
214+
self.add_flags(TypeFlags::HAS_TY_OPAQUE);
210215
}
211216

212217
&ty::FnPtr(fn_sig) => self.bound_computation(fn_sig, |computation, fn_sig| {

src/test/ui/type-alias-impl-trait/issue-53398-cyclic-types.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
type Foo = impl Fn() -> Foo;
44

55
fn foo() -> Foo {
6-
foo //~ ERROR: overflow evaluating the requirement `fn() -> Foo {foo}: Sized`
6+
foo //~ ERROR: overflow evaluating the requirement `<fn() -> Foo {foo} as FnOnce<()>>::Output == fn() -> Foo {foo}`
77
}
88

99
fn main() {}

src/test/ui/type-alias-impl-trait/issue-53398-cyclic-types.stderr

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
error[E0275]: overflow evaluating the requirement `fn() -> Foo {foo}: Sized`
1+
error[E0275]: overflow evaluating the requirement `<fn() -> Foo {foo} as FnOnce<()>>::Output == fn() -> Foo {foo}`
22
--> $DIR/issue-53398-cyclic-types.rs:6:5
33
|
44
LL | foo
55
| ^^^
6-
|
7-
= help: consider increasing the recursion limit by adding a `#![recursion_limit = "256"]` attribute to your crate (`issue_53398_cyclic_types`)
86

97
error: aborting due to previous error
108

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// edition:2018
2+
3+
type AsyncFnPtr = Box<
4+
dyn Fn() -> std::pin::Pin<Box<dyn std::future::Future<Output = ()>>>,
5+
>;
6+
7+
async fn test() {}
8+
9+
#[allow(unused_must_use)]
10+
fn main() {
11+
Box::new(test) as AsyncFnPtr;
12+
//~^ ERROR type mismatch
13+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
error[E0271]: type mismatch resolving `<fn() -> impl Future<Output = ()> {test} as FnOnce<()>>::Output == Pin<Box<(dyn Future<Output = ()> + 'static)>>`
2+
--> $DIR/issue-98604.rs:11:5
3+
|
4+
LL | Box::new(test) as AsyncFnPtr;
5+
| ^^^^^^^^^^^^^^ expected struct `Pin`, found opaque type
6+
|
7+
note: while checking the return type of the `async fn`
8+
--> $DIR/issue-98604.rs:7:17
9+
|
10+
LL | async fn test() {}
11+
| ^ checked the `Output` of this `async fn`, found opaque type
12+
= note: expected struct `Pin<Box<(dyn Future<Output = ()> + 'static)>>`
13+
found opaque type `impl Future<Output = ()>`
14+
= note: required for the cast from `fn() -> impl Future<Output = ()> {test}` to the object type `dyn Fn() -> Pin<Box<(dyn Future<Output = ()> + 'static)>>`
15+
16+
error: aborting due to previous error
17+
18+
For more information about this error, try `rustc --explain E0271`.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
fn hi() -> impl Sized { std::ptr::null::<u8>() }
2+
3+
fn main() {
4+
let b: Box<dyn Fn() -> Box<u8>> = Box::new(hi);
5+
//~^ ERROR type mismatch resolving `<fn() -> impl Sized {hi} as FnOnce<()>>::Output == Box<u8>`
6+
let boxed = b();
7+
let null = *boxed;
8+
println!("{null:?}");
9+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
error[E0271]: type mismatch resolving `<fn() -> impl Sized {hi} as FnOnce<()>>::Output == Box<u8>`
2+
--> $DIR/issue-98608.rs:4:39
3+
|
4+
LL | fn hi() -> impl Sized { std::ptr::null::<u8>() }
5+
| ---------- the found opaque type
6+
...
7+
LL | let b: Box<dyn Fn() -> Box<u8>> = Box::new(hi);
8+
| ^^^^^^^^^^^^ expected struct `Box`, found opaque type
9+
|
10+
= note: expected struct `Box<u8>`
11+
found opaque type `impl Sized`
12+
= note: required for the cast from `fn() -> impl Sized {hi}` to the object type `dyn Fn() -> Box<u8>`
13+
14+
error: aborting due to previous error
15+
16+
For more information about this error, try `rustc --explain E0271`.

0 commit comments

Comments
 (0)