1export class h {
2    j: string = "";
3    k: number = 1;
4    l() {
5        const j = 2;
6        return this.j + this.k;
7    }
8}
9export function g() {
10}
11export interface i {
12    m: string;
13    o: number;
14}
15