1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
---
source: crates/aiken-lang/src/parser/expr/block.rs
description: "Code:\n\ntest foo() {\n {\n let a = Void\n a\n }\n True\n}\n"
---
Test(
Function {
arguments: [],
body: Sequence {
location: 38..50,
expressions: [
Sequence {
location: 21..39,
expressions: [
Assignment {
location: 21..33,
value: Var {
location: 29..33,
name: "Void",
},
patterns: [
AssignmentPattern {
pattern: Var {
location: 25..26,
name: "a",
},
annotation: None,
location: 25..26,
},
],
kind: Let {
backpassing: false,
},
comment: None,
},
Var {
location: 38..39,
name: "a",
},
],
},
Var {
location: 46..50,
name: "True",
},
],
},
doc: None,
location: 0..10,
name: "foo",
public: false,
return_annotation: None,
return_type: (),
end_position: 51,
on_test_failure: FailImmediately,
},
)