mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-19 07:32:26 +03:00
15 lines
160 B
Plaintext
15 lines
160 B
Plaintext
/*
|
|
namespace: Parse
|
|
expectation: Pass
|
|
*/
|
|
|
|
const x: u32 = 1u32;
|
|
|
|
const f: u32 = x;
|
|
|
|
const x: i32 = 1i32;
|
|
|
|
const y: string = "hello world";
|
|
|
|
const x: char = 'b';
|