summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/new-solver/fn-trait.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-19 09:26:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-19 09:26:03 +0000
commit9918693037dce8aa4bb6f08741b6812923486c18 (patch)
tree21d2b40bec7e6a7ea664acee056eb3d08e15a1cf /tests/ui/traits/new-solver/fn-trait.stderr
parentReleasing progress-linux version 1.75.0+dfsg1-5~progress7.99u1. (diff)
downloadrustc-9918693037dce8aa4bb6f08741b6812923486c18.tar.xz
rustc-9918693037dce8aa4bb6f08741b6812923486c18.zip
Merging upstream version 1.76.0+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/traits/new-solver/fn-trait.stderr')
-rw-r--r--tests/ui/traits/new-solver/fn-trait.stderr126
1 files changed, 0 insertions, 126 deletions
diff --git a/tests/ui/traits/new-solver/fn-trait.stderr b/tests/ui/traits/new-solver/fn-trait.stderr
deleted file mode 100644
index e33487235..000000000
--- a/tests/ui/traits/new-solver/fn-trait.stderr
+++ /dev/null
@@ -1,126 +0,0 @@
-error[E0277]: expected a `Fn()` closure, found `unsafe fn() -> i32`
- --> $DIR/fn-trait.rs:20:16
- |
-LL | require_fn(f as unsafe fn() -> i32);
- | ---------- ^^^^^^^^^^^^^^^^^^^^^^^ call the function in a closure: `|| unsafe { /* code */ }`
- | |
- | required by a bound introduced by this call
- |
- = help: the trait `Fn<()>` is not implemented for `unsafe fn() -> i32`
- = note: unsafe function cannot be called generically without an unsafe block
- = note: wrap the `unsafe fn() -> i32` in a closure with no arguments: `|| { /* code */ }`
-note: required by a bound in `require_fn`
- --> $DIR/fn-trait.rs:3:23
- |
-LL | fn require_fn(_: impl Fn() -> i32) {}
- | ^^^^^^^^^^^ required by this bound in `require_fn`
-
-error[E0271]: type mismatch resolving `<unsafe fn() -> i32 as FnOnce<()>>::Output == i32`
- --> $DIR/fn-trait.rs:20:16
- |
-LL | require_fn(f as unsafe fn() -> i32);
- | ---------- ^^^^^^^^^^^^^^^^^^^^^^^ types differ
- | |
- | required by a bound introduced by this call
- |
-note: required by a bound in `require_fn`
- --> $DIR/fn-trait.rs:3:31
- |
-LL | fn require_fn(_: impl Fn() -> i32) {}
- | ^^^ required by this bound in `require_fn`
-
-error[E0277]: expected a `Fn()` closure, found `extern "C" fn() -> i32 {g}`
- --> $DIR/fn-trait.rs:23:16
- |
-LL | require_fn(g);
- | ---------- ^ expected an `Fn()` closure, found `extern "C" fn() -> i32 {g}`
- | |
- | required by a bound introduced by this call
- |
- = help: the trait `Fn<()>` is not implemented for fn item `extern "C" fn() -> i32 {g}`
- = note: wrap the `extern "C" fn() -> i32 {g}` in a closure with no arguments: `|| { /* code */ }`
-note: required by a bound in `require_fn`
- --> $DIR/fn-trait.rs:3:23
- |
-LL | fn require_fn(_: impl Fn() -> i32) {}
- | ^^^^^^^^^^^ required by this bound in `require_fn`
-
-error[E0271]: type mismatch resolving `<extern "C" fn() -> i32 {g} as FnOnce<()>>::Output == i32`
- --> $DIR/fn-trait.rs:23:16
- |
-LL | require_fn(g);
- | ---------- ^ types differ
- | |
- | required by a bound introduced by this call
- |
-note: required by a bound in `require_fn`
- --> $DIR/fn-trait.rs:3:31
- |
-LL | fn require_fn(_: impl Fn() -> i32) {}
- | ^^^ required by this bound in `require_fn`
-
-error[E0277]: expected a `Fn()` closure, found `extern "C" fn() -> i32`
- --> $DIR/fn-trait.rs:26:16
- |
-LL | require_fn(g as extern "C" fn() -> i32);
- | ---------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected an `Fn()` closure, found `extern "C" fn() -> i32`
- | |
- | required by a bound introduced by this call
- |
- = help: the trait `Fn<()>` is not implemented for `extern "C" fn() -> i32`
- = note: wrap the `extern "C" fn() -> i32` in a closure with no arguments: `|| { /* code */ }`
-note: required by a bound in `require_fn`
- --> $DIR/fn-trait.rs:3:23
- |
-LL | fn require_fn(_: impl Fn() -> i32) {}
- | ^^^^^^^^^^^ required by this bound in `require_fn`
-
-error[E0271]: type mismatch resolving `<extern "C" fn() -> i32 as FnOnce<()>>::Output == i32`
- --> $DIR/fn-trait.rs:26:16
- |
-LL | require_fn(g as extern "C" fn() -> i32);
- | ---------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^ types differ
- | |
- | required by a bound introduced by this call
- |
-note: required by a bound in `require_fn`
- --> $DIR/fn-trait.rs:3:31
- |
-LL | fn require_fn(_: impl Fn() -> i32) {}
- | ^^^ required by this bound in `require_fn`
-
-error[E0277]: expected a `Fn()` closure, found `unsafe fn() -> i32 {h}`
- --> $DIR/fn-trait.rs:29:16
- |
-LL | require_fn(h);
- | ---------- ^ call the function in a closure: `|| unsafe { /* code */ }`
- | |
- | required by a bound introduced by this call
- |
- = help: the trait `Fn<()>` is not implemented for fn item `unsafe fn() -> i32 {h}`
- = note: unsafe function cannot be called generically without an unsafe block
- = note: wrap the `unsafe fn() -> i32 {h}` in a closure with no arguments: `|| { /* code */ }`
-note: required by a bound in `require_fn`
- --> $DIR/fn-trait.rs:3:23
- |
-LL | fn require_fn(_: impl Fn() -> i32) {}
- | ^^^^^^^^^^^ required by this bound in `require_fn`
-
-error[E0271]: type mismatch resolving `<unsafe fn() -> i32 {h} as FnOnce<()>>::Output == i32`
- --> $DIR/fn-trait.rs:29:16
- |
-LL | require_fn(h);
- | ---------- ^ types differ
- | |
- | required by a bound introduced by this call
- |
-note: required by a bound in `require_fn`
- --> $DIR/fn-trait.rs:3:31
- |
-LL | fn require_fn(_: impl Fn() -> i32) {}
- | ^^^ required by this bound in `require_fn`
-
-error: aborting due to 8 previous errors
-
-Some errors have detailed explanations: E0271, E0277.
-For more information about an error, try `rustc --explain E0271`.