``` js /* @flow */ type Key = 'key'; type T = { key: number }; declare var prop: $PropertyType<T,Key>; ``` Actual output: ``` 4: declare var prop: $PropertyType<T,Key>; ^ expected object type and string literal as arguments to $PropertyType ``` Expected: `No error`