mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-25 15:12:12 +00:00
10 lines
113 B
TypeScript
10 lines
113 B
TypeScript
class C {
|
|
x!: i32;
|
|
x!: i32 = 0;
|
|
static x!: i32;
|
|
}
|
|
function f(): void {
|
|
let x!: i32;
|
|
let x!: i32 = 0;
|
|
}
|