Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

infer keyword does not work in function return type #54288

Closed
scarf005 opened this issue May 17, 2023 · 2 comments
Closed

infer keyword does not work in function return type #54288

scarf005 opened this issue May 17, 2023 · 2 comments

Comments

@scarf005
Copy link

scarf005 commented May 17, 2023

Bug Report

  • generic type with infer keyword works on its own
  • however, it fails to infer when it's used as return type

🔎 Search Terms

generic return type infer const parameter

🕗 Version & Regression Information

⏯ Playground Link

Playground Link

💻 Code

type Arr = readonly any[]

type Head<T extends Arr> = T extends [infer H, ...infer _] ? H : never
const head = <const T extends Arr>(arr: T): Head<T> => arr[0]

type H = Head<[1, 2, 3]> // 1
const h = head([1, 2, 3]) // should be 1 but never
// const head: <readonly [1, 2, 3]>(arr: readonly [1, 2, 3]) => never

🙁 Actual behavior

type of h is never

🙂 Expected behavior

type of h should be 1

@scarf005 scarf005 changed the title infer keyword not working in function return type infer keyword does not work in function return type May 17, 2023
@whzx5byb
Copy link

A readonly array is not assignable to a writable array. You should add readonly in the condition type.

- type Head<T extends Arr> = T extends [infer H, ...infer _] ? H : never
+ type Head<T extends Arr> = T extends readonly [infer H, ...infer _] ? H : never

@scarf005
Copy link
Author

scarf005 commented May 17, 2023

thank you, must've overlooked it.
Now it works well.

@scarf005 scarf005 closed this as not planned Won't fix, can't repro, duplicate, stale May 17, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants