aboutsummaryrefslogtreecommitdiff
path: root/src/type.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 /src/type.zig
parent5831b68341827b544ea3f268c921e9044bd11047 (diff)
downloadzig-9d93b2ccf11f584320a2c5209dd2d94705167695.tar.gz
zig-9d93b2ccf11f584320a2c5209dd2d94705167695.zip
Eliminate `BoundFn` type from the language
Closes #9484
Diffstat (limited to 'src/type.zig')
-rw-r--r--src/type.zig2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/type.zig b/src/type.zig
index 1aefa8f7a1..e64f310d79 100644
--- a/src/type.zig
+++ b/src/type.zig
@@ -185,7 +185,6 @@ pub const Type = extern union {
.Void,
.ErrorSet,
.Fn,
- .BoundFn,
.Opaque,
.AnyFrame,
.Enum,
@@ -4074,7 +4073,6 @@ pub const Type = extern union {
=> return true,
.Opaque => return is_extern,
- .BoundFn,
.ComptimeFloat,
.ComptimeInt,
.EnumLiteral,