Add new acceptance test scenario: 046

This commit is contained in:
KtorZ 2023-01-19 18:33:10 +01:00 committed by Lucas
parent e8fb386bdc
commit a178cee7bf
3 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,5 @@
# This file was generated by Aiken
# You typically do not need to edit this file
requirements = []
packages = []

View File

@ -0,0 +1,3 @@
name = 'aiken-lang/acceptance_test_046'
version = '0.0.0'
description = ''

View File

@ -0,0 +1,9 @@
test sort_by_1() {
let xs = [[4, 3, 2, 1], [2, 3, 4, 5]]
when xs is {
[[], ys] -> True
[xs, []] -> True
[[x, ..xs2], [y, ..ys2]] -> True
_ -> True
}
}