TypeScript/tests/baselines/reference/typeCheckTypeArgument.errors.txt

52 lines
2.3 KiB
Plaintext
Raw Normal View History

2015-03-25 01:00:29 +01:00
error TS2318: Cannot find global type 'String'.
error TS2318: Cannot find global type 'Array'.
2015-03-17 21:57:58 +01:00
error TS2318: Cannot find global type 'IArguments'.
error TS2318: Cannot find global type 'Boolean'.
error TS2318: Cannot find global type 'RegExp'.
2015-03-20 06:57:03 +01:00
error TS2318: Cannot find global type 'Object'.
error TS2318: Cannot find global type 'Number'.
2015-03-25 01:00:29 +01:00
error TS2318: Cannot find global type 'Function'.
tests/cases/compiler/typeCheckTypeArgument.ts(3,19): error TS2304: Cannot find name 'UNKNOWN'.
tests/cases/compiler/typeCheckTypeArgument.ts(5,26): error TS2304: Cannot find name 'UNKNOWN'.
tests/cases/compiler/typeCheckTypeArgument.ts(7,21): error TS2304: Cannot find name 'UNKNOWN'.
tests/cases/compiler/typeCheckTypeArgument.ts(9,24): error TS2304: Cannot find name 'UNKNOWN'.
tests/cases/compiler/typeCheckTypeArgument.ts(12,22): error TS2304: Cannot find name 'UNKNOWN'.
tests/cases/compiler/typeCheckTypeArgument.ts(15,13): error TS2304: Cannot find name 'UNKNOWN'.
2015-03-25 01:00:29 +01:00
!!! error TS2318: Cannot find global type 'String'.
!!! error TS2318: Cannot find global type 'Array'.
2015-03-17 21:57:58 +01:00
!!! error TS2318: Cannot find global type 'IArguments'.
!!! error TS2318: Cannot find global type 'Boolean'.
!!! error TS2318: Cannot find global type 'RegExp'.
2015-03-20 06:57:03 +01:00
!!! error TS2318: Cannot find global type 'Object'.
!!! error TS2318: Cannot find global type 'Number'.
2015-03-25 01:00:29 +01:00
!!! error TS2318: Cannot find global type 'Function'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/typeCheckTypeArgument.ts (6 errors) ====
/// <reference no-default-lib="true"/>
var f: <T extends UNKNOWN>() => void;
~~~~~~~
!!! error TS2304: Cannot find name 'UNKNOWN'.
2014-07-13 01:04:16 +02:00
interface IFoo<T extends UNKNOWN> { }
~~~~~~~
!!! error TS2304: Cannot find name 'UNKNOWN'.
2014-07-13 01:04:16 +02:00
class Foo<T extends UNKNOWN> { }
~~~~~~~
!!! error TS2304: Cannot find name 'UNKNOWN'.
2014-07-13 01:04:16 +02:00
function bar<T extends UNKNOWN>() { }
~~~~~~~
!!! error TS2304: Cannot find name 'UNKNOWN'.
2014-07-13 01:04:16 +02:00
class Foo2 {
method<T extends UNKNOWN>() { }
~~~~~~~
!!! error TS2304: Cannot find name 'UNKNOWN'.
2014-07-13 01:04:16 +02:00
}
(<T extends UNKNOWN>(a) => { });
~~~~~~~
!!! error TS2304: Cannot find name 'UNKNOWN'.