Skip to content

Commit

Permalink
[test] Avoid the host-diff problem.
Browse files Browse the repository at this point in the history
  • Loading branch information
pfusik committed Mar 27, 2024
1 parent 3b0ac33 commit 656aa0c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions test/DictionaryDestruct.fu
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ public class Test
Dictionary<string, SortedDictionary<string(), string()>()>() dosd;
dosd.Add("bbb");
dosd["bbb"]["foo"] = "bar";
Dictionary<int, Regex#>() dor; //FAIL: swift TODO
dor[10] = Regex.Compile("^\\d+$");
// TODO: different Java import order between C++ and C# fut
// Dictionary<int, Regex#>() dor; //FAIL: swift TODO
// dor[10] = Regex.Compile("^\\d+$");
return dos.Count == 1
&& doo.Count == 1
&& dod.Count == 1
Expand All @@ -46,7 +47,7 @@ public class Test
&& doh.Count == 1
&& doss.Count == 1
&& dod2.Count == 1
&& dosd.Count == 1
&& dor.Count == 1;
&& dosd.Count == 1;
// && dor.Count == 1;
}
}

0 comments on commit 656aa0c

Please sign in to comment.