Removed misleading comment from test.

This commit is contained in:
Daniel Rosenwasser 2015-12-08 17:13:16 -08:00
parent dc2af2fb7f
commit e1004fac60

View file

@ -6,7 +6,7 @@ class C extends A {
}
function foo(name: 'hi'): B;
function foo(name: 'bye'): C;
function foo(name: string): A; // error
function foo(name: string): A;
function foo(name: any): Z {
return null;
}