TypeScript/tests/baselines/reference/enumPropertyAccess.errors.txt
Anders Hejlsberg 15fae38b39
Improve narrowing of generic types in control flow analysis (#43183)
* Narrow type variables with union constraints when merited by contextual type

* Narrow generics with union type constraints as indicated by contextual type

* Accept new baselines

* Add tests

* Fix circularity for JSX elements

* Remove unnecessary isConstraintPosition information from flow cache key

* Update comment

* Add additional tests

* Rename to getNarrowableTypeForReference, remove getConstraintForLocation

* Add comment

* Fix removal of undefined in destructurings with initializers

* Use getContextFreeTypeOfExpression in discriminateContextualTypeByObjectMembers

* In obj[x], use constraint of obj's type only when x's type is non-generic

* Add comment
2021-03-19 17:12:57 -07:00

23 lines
795 B
Plaintext

tests/cases/compiler/enumPropertyAccess.ts(7,11): error TS2339: Property 'Green' does not exist on type 'Colors.Red'.
tests/cases/compiler/enumPropertyAccess.ts(12,7): error TS2339: Property 'Green' does not exist on type 'Colors'.
==== tests/cases/compiler/enumPropertyAccess.ts (2 errors) ====
enum Colors {
Red,
Green
}
var x = Colors.Red; // type of 'x' should be 'Colors'
var p = x.Green; // error
~~~~~
!!! error TS2339: Property 'Green' does not exist on type 'Colors.Red'.
x.toFixed(); // ok
// Now with generics
function fill<B extends Colors>(f: B) {
f.Green; // error
~~~~~
!!! error TS2339: Property 'Green' does not exist on type 'Colors'.
f.toFixed(); // ok
}