TypeScript/tests/cases/compiler/staticInstanceResolution.ts
2014-07-12 17:30:19 -07:00

14 lines
234 B
TypeScript

class Comment {
public getDocCommentText()
{
}
static getDocCommentText(comments: Comment[])
{
comments[0].getDocCommentText();
var c: Comment;
c.getDocCommentText();
}
}