From 050295d943689561024b1eed73751dfbd49882be Mon Sep 17 00:00:00 2001 From: Jake Fecher Date: Fri, 1 Sep 2023 08:37:35 -0500 Subject: [PATCH] Fix type alias test --- .../tests/execution_success/type_aliases/src/main.nr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/nargo_cli/tests/execution_success/type_aliases/src/main.nr b/crates/nargo_cli/tests/execution_success/type_aliases/src/main.nr index 85a40c739e2..40ad132608a 100644 --- a/crates/nargo_cli/tests/execution_success/type_aliases/src/main.nr +++ b/crates/nargo_cli/tests/execution_success/type_aliases/src/main.nr @@ -2,9 +2,9 @@ type Foo = [T; 2]; type Bar = Field; -type Three = Two; -type Two = One; type One = (A, B); +type Two = One; +type Three = Two; struct MyStruct { foo: Bar,