The following code: ``` typescript class Test { constructor(public someting: any){} } export let t = new Test("some thing"); ``` produces the following error: Exported variable 't' has or is using private name 'Test'.