1
0
mirror of https://github.com/fluencelabs/assemblyscript synced 2025-06-13 06:51:34 +00:00
Files
assemblyscript/tests/compiler/typealias.ts

6 lines
74 B
TypeScript
Raw Normal View History

2017-12-20 13:36:39 +01:00
type alias = i32;
export function alias(a: alias): alias {
return a;
}