47 lines
614 B
Plaintext
47 lines
614 B
Plaintext
### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63.
|
|
|
|
##! Summary line 1.
|
|
##! Summary line 2.
|
|
## p1,l1
|
|
## p1,l2
|
|
## p1,l3
|
|
##
|
|
## p2,l1
|
|
## p2,l2
|
|
## p2,l3
|
|
module Test {
|
|
|
|
import hilti;
|
|
import spicy_rt;
|
|
|
|
## It's a Foo type.
|
|
type Foo = struct {
|
|
bool a;
|
|
string b;
|
|
};
|
|
|
|
## Constant 1.
|
|
const uint<64> c1 = 1;
|
|
|
|
## Constant 2.
|
|
const int<32> c2 = int32(2);
|
|
|
|
## Global 1.
|
|
global uint<64> g1 = 1;
|
|
|
|
## Global 2.
|
|
global int<32> g2 = int32(2);
|
|
|
|
## Global 3.
|
|
global int<32> g3;
|
|
|
|
## Function 1.
|
|
function void foo1() {
|
|
}
|
|
|
|
## Function 2.
|
|
function void foo2() {
|
|
}
|
|
|
|
}
|