aboutsummaryrefslogtreecommitdiff
path: root/lib/std/testing.zig
diff options
context:
space:
mode:
authorVeikka Tuominen <git@vexu.eu>2022-12-08 19:52:05 +0200
committerAndrew Kelley <andrew@ziglang.org>2022-12-09 20:37:18 -0700
commit9d93b2ccf11f584320a2c5209dd2d94705167695 (patch)
treebc746509f92c029be2b6cd3338aace01a5baa91e /lib/std/testing.zig
parent5831b68341827b544ea3f268c921e9044bd11047 (diff)
downloadzig-9d93b2ccf11f584320a2c5209dd2d94705167695.tar.gz
zig-9d93b2ccf11f584320a2c5209dd2d94705167695.zip
Eliminate `BoundFn` type from the language
Closes #9484
Diffstat (limited to 'lib/std/testing.zig')
-rw-r--r--lib/std/testing.zig1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/std/testing.zig b/lib/std/testing.zig
index 6882a19f1d..3bb3d6e14b 100644
--- a/lib/std/testing.zig
+++ b/lib/std/testing.zig
@@ -46,7 +46,6 @@ pub fn expectError(expected_error: anyerror, actual_error_union: anytype) !void
pub fn expectEqual(expected: anytype, actual: @TypeOf(expected)) !void {
switch (@typeInfo(@TypeOf(actual))) {
.NoReturn,
- .BoundFn,
.Opaque,
.Frame,
.AnyFrame,