Skip to content

Commit

Permalink
Fix type alias test
Browse files Browse the repository at this point in the history
  • Loading branch information
jfecher committed Sep 1, 2023
1 parent b96110a commit 050295d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ type Foo<T> = [T; 2];

type Bar = Field;

type Three = Two<u8>;
type Two<A> = One<A, u32>;
type One<A, B> = (A, B);
type Two<A> = One<A, u32>;
type Three = Two<u8>;

struct MyStruct {
foo: Bar,
Expand Down

0 comments on commit 050295d

Please sign in to comment.