From 72b93e51f18f83a560552c9de54550a91a08b0c5 Mon Sep 17 00:00:00 2001 From: Ayaz Hafiz Date: Tue, 5 Apr 2022 18:08:24 -0400 Subject: [PATCH] Bugfix --- compiler/types/src/subs.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/types/src/subs.rs b/compiler/types/src/subs.rs index 1fc28cf4f8..36f0ac811d 100644 --- a/compiler/types/src/subs.rs +++ b/compiler/types/src/subs.rs @@ -1287,7 +1287,7 @@ fn integer_type( Content::Alias( Symbol::NUM_INTEGER, vars, - at_integer_signed64, + at_signed64, AliasKind::Structural, ) }); @@ -1532,7 +1532,7 @@ fn float_type( Content::Alias( Symbol::NUM_FLOATINGPOINT, vars, - at_float_binary64, + at_binary64, AliasKind::Structural, ) });