aboutsummaryrefslogtreecommitdiff
path: root/lib/std
diff options
context:
space:
mode:
Diffstat (limited to 'lib/std')
-rw-r--r--lib/std/builtin.zig3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/std/builtin.zig b/lib/std/builtin.zig
index ef93bb14ee..b449080e86 100644
--- a/lib/std/builtin.zig
+++ b/lib/std/builtin.zig
@@ -221,7 +221,6 @@ pub const SourceLocation = struct {
};
pub const TypeId = std.meta.Tag(Type);
-pub const TypeInfo = @compileError("deprecated; use Type");
/// This data structure is used by the Zig language code generation and
/// therefore must be kept in sync with the compiler implementation.
@@ -388,8 +387,6 @@ pub const Type = union(enum) {
decls: []const Declaration,
};
- pub const FnArg = @compileError("deprecated; use Fn.Param");
-
/// This data structure is used by the Zig language code generation and
/// therefore must be kept in sync with the compiler implementation.
pub const Fn = struct {