mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-18 14:31:31 +03:00
Merge pull request #1782 from AleoHQ/tests-block-comments
[tests] Consistently use block comments.
This commit is contained in:
commit
99ff4178be
@ -1,14 +1,16 @@
|
||||
// namespace: Compile
|
||||
// expectation: Pass
|
||||
// inputs:
|
||||
// - i16.in: |
|
||||
// [main]
|
||||
// a: i16 = 2;
|
||||
// b: i16 = 2;
|
||||
// c: i16 = 4;
|
||||
|
||||
// [registers]
|
||||
// r0: bool = true;
|
||||
/*
|
||||
namespace: Compile
|
||||
expectation: Pass
|
||||
inputs:
|
||||
- i16.in: |
|
||||
[main]
|
||||
a: i16 = 2;
|
||||
b: i16 = 2;
|
||||
c: i16 = 4;
|
||||
|
||||
[registers]
|
||||
r0: bool = true;
|
||||
*/
|
||||
|
||||
function main(a: i16, b: i16, c: i16) -> bool {
|
||||
return a ** b == c;
|
||||
|
@ -1,14 +1,16 @@
|
||||
// namespace: Compile
|
||||
// expectation: Pass
|
||||
// inputs:
|
||||
// - i8.in: |
|
||||
// [main]
|
||||
// a: i8 = 2;
|
||||
// b: i8 = 2;
|
||||
// c: i8 = 4;
|
||||
|
||||
// [registers]
|
||||
// r0: bool = true;
|
||||
/*
|
||||
namespace: Compile
|
||||
expectation: Pass
|
||||
inputs:
|
||||
- i8.in: |
|
||||
[main]
|
||||
a: i8 = 2;
|
||||
b: i8 = 2;
|
||||
c: i8 = 4;
|
||||
|
||||
[registers]
|
||||
r0: bool = true;
|
||||
*/
|
||||
|
||||
function main(a: i8, b: i8, c: i8) -> bool {
|
||||
return a ** b == c;
|
||||
|
@ -1,14 +1,16 @@
|
||||
// namespace: Compile
|
||||
// expectation: Pass
|
||||
// inputs:
|
||||
// - u16_f.in: |
|
||||
// [main]
|
||||
// a: u16 = 2;
|
||||
// b: u16 = 2;
|
||||
// c: u16 = 4;
|
||||
/*
|
||||
namespace: Compile
|
||||
expectation: Pass
|
||||
inputs:
|
||||
- u16_f.in: |
|
||||
[main]
|
||||
a: u16 = 2;
|
||||
b: u16 = 2;
|
||||
c: u16 = 4;
|
||||
|
||||
// [registers]
|
||||
// r0: bool = true;
|
||||
[registers]
|
||||
r0: bool = true;
|
||||
*/
|
||||
|
||||
function main(a: u16, b: u16, c: u16) -> bool {
|
||||
return a ** b == c;
|
||||
|
@ -1,14 +1,16 @@
|
||||
// namespace: Compile
|
||||
// expectation: Pass
|
||||
// inputs:
|
||||
// - u8_f.in: |
|
||||
// [main]
|
||||
// a: u8 = 2;
|
||||
// b: u8 = 2;
|
||||
// c: u8 = 4;
|
||||
/*
|
||||
namespace: Compile
|
||||
expectation: Pass
|
||||
inputs:
|
||||
- u8_f.in: |
|
||||
[main]
|
||||
a: u8 = 2;
|
||||
b: u8 = 2;
|
||||
c: u8 = 4;
|
||||
|
||||
// [registers]
|
||||
// r0: bool = true;
|
||||
[registers]
|
||||
r0: bool = true;
|
||||
*/
|
||||
|
||||
function main(a: u8, b: u8, c: u8) -> bool {
|
||||
return a ** b == c;
|
||||
|
Loading…
Reference in New Issue
Block a user