Merge pull request #984 from aiken-lang/acceptance_107

Introduce acceptance test 107 illustrating compiler crash
This commit is contained in:
Matthias Benkort 2024-08-21 14:43:59 +02:00 committed by GitHub
commit 0b6b672149
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 23 additions and 0 deletions

View File

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

View File

@ -0,0 +1,9 @@
name = "aiken-lang/107"
version = "0.0.0"
license = "Apache-2.0"
description = "Aiken contracts for project 'aiken-lang/107'"
[repository]
user = "aiken-lang"
project = "107"
platform = "github"

View File

@ -0,0 +1,7 @@
fn new_list() {
[]
}
test foo() {
fn() { new_list }()() == []
}