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

24 lines
1 KiB
Plaintext
Raw Normal View History

2014-10-01 02:15:18 +02:00
tests/cases/conformance/internalModules/DeclarationMerging/ClassAndModuleThatMergeWithModulesExportedGenericFunctionAndGenericClassStaticFunctionOfTheSameName.ts(5,12): error TS2300: Duplicate identifier 'fn'.
2014-10-01 20:27:20 +02:00
tests/cases/conformance/internalModules/DeclarationMerging/ClassAndModuleThatMergeWithModulesExportedGenericFunctionAndGenericClassStaticFunctionOfTheSameName.ts(10,21): error TS2300: Duplicate identifier 'fn'.
2014-10-01 02:15:18 +02:00
==== tests/cases/conformance/internalModules/DeclarationMerging/ClassAndModuleThatMergeWithModulesExportedGenericFunctionAndGenericClassStaticFunctionOfTheSameName.ts (2 errors) ====
2014-07-13 01:04:16 +02:00
class clodule<T> {
id: string;
value: T;
static fn<U>(id: U) { }
2014-10-01 02:15:18 +02:00
~~
!!! error TS2300: Duplicate identifier 'fn'.
2014-07-13 01:04:16 +02:00
}
module clodule {
// error: duplicate identifier expected
export function fn<T>(x: T, y: T): T {
2014-10-01 20:27:20 +02:00
~~
!!! error TS2300: Duplicate identifier 'fn'.
2014-07-13 01:04:16 +02:00
return x;
}
}