René's URL Explorer Experiment


Title: Mapped conditional type leaks unbound type parameter · Issue #31326 · microsoft/TypeScript · GitHub

Open Graph Title: Mapped conditional type leaks unbound type parameter · Issue #31326 · microsoft/TypeScript

X Title: Mapped conditional type leaks unbound type parameter · Issue #31326 · microsoft/TypeScript

Description: TypeScript Version: 3.5.0-dev.20190509 Search Terms: generic type parameter, scope leak, scope escape, conditional type, mapped type Code type Hmm = U extends T ? { [K in keyof U]: number } : never; type What = Hmm<{}, { ...

Open Graph Description: TypeScript Version: 3.5.0-dev.20190509 Search Terms: generic type parameter, scope leak, scope escape, conditional type, mapped type Code type Hmm = U extends T ? { [K in keyof U]: ...

X Description: TypeScript Version: 3.5.0-dev.20190509 Search Terms: generic type parameter, scope leak, scope escape, conditional type, mapped type Code type Hmm<T, U extends T> = U extends T ? { [K in keyo...

Opengraph URL: https://github.com/microsoft/TypeScript/issues/31326

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Mapped conditional type leaks unbound type parameter","articleBody":"**TypeScript Version:**  3.5.0-dev.20190509\r\n\r\n**Search Terms:** generic type parameter, scope leak, scope escape, conditional type, mapped type\r\n\r\n**Code**\r\n\r\n```ts\r\ntype Hmm\u003cT, U extends T\u003e = U extends T ? { [K in keyof U]: number } : never;\r\ntype What = Hmm\u003c{}, { a: string }\u003e\r\n// type What = { [K in keyof (T \u0026 { a: string; })]: number; } 🤪\r\nconst w: What = { a: 4 };  // error! '{ a: number; }' not assignable to What\r\n```\r\n**Expected behavior:**\r\n`What` should be the concrete object type `{ a: number }` and therefore the assignment to `w` should compile without errors.\r\n\r\n**Actual behavior:**\r\nAn unbound type parameter `T` has escaped from its scope and is terrorizing the surrounding countryside.  Please stay indoors with windows and doors locked until further notice.\r\n\r\n**Playground Link:** \u003c!-- A link to a TypeScript Playground \"Share\" link which demonstrates this behavior --\u003e [👨‍💻🔗](https://www.typescriptlang.org/play//#src=type%20Hmm%3CT%2C%20U%20extends%20T%3E%20%3D%20U%20extends%20T%20%3F%20%7B%20%5BK%20in%20keyof%20U%5D%3A%20number%20%7D%20%3A%20never%3B%0D%0Atype%20What%20%3D%20Hmm%3C%7B%7D%2C%20%7B%20a%3A%20string%20%7D%3E%0D%0A%2F%2F%20type%20What%20%3D%20%7B%20%5BK%20in%20keyof%20(T%20%26%20%7B%20a%3A%20string%3B%20%7D)%5D%3A%20number%3B%20%7D%20%F0%9F%A4%AA%0D%0Aconst%20w%3A%20What%20%3D%20%7B%20a%3A%204%20%7D%3B%20%20%2F%2F%20error!%20'%7B%20a%3A%20number%3B%20%7D'%20not%20assignable%20to%20What%0D%0A)\r\n\r\n**Related Issues:** \r\nProbably caused by: #29437\r\nPrior escapes: #31099 \r\nAlso: [Relevant SO question](https://stackoverflow.com/questions/56050214/typescript-nested-map-type-gives-confusing-type-hints)","author":{"url":"https://github.com/jcalz","@type":"Person","name":"jcalz"},"datePublished":"2019-05-09T15:07:56.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":1},"url":"https://github.com/31326/TypeScript/issues/31326"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:28199b14-972e-0a1d-0343-e774ac5c7dfb
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id9542:1256A0:3E338C:58CA8D:6A61CA23
html-safe-noncef8b9e72fbd3c4e58f0278e25a53e3e25ab25c893cd091fcb2c16bf6607c9814d
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5NTQyOjEyNTZBMDozRTMzOEM6NThDQThEOjZBNjFDQTIzIiwidmlzaXRvcl9pZCI6IjgzNDY1NjUwMDA3MTU5NDY1MzIiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmacbe607e210b436a17e54731ba53346dde1e1948a75f2bef5721a8a7282d52fee2
hovercard-subject-tagissue:442287064
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/microsoft/TypeScript/31326/issue_layout
twitter:imagehttps://opengraph.githubassets.com/a06202abf3ea00c232f8df7c198d7b2faf37ef73e9622890d9db7b34556f6db8/microsoft/TypeScript/issues/31326
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/a06202abf3ea00c232f8df7c198d7b2faf37ef73e9622890d9db7b34556f6db8/microsoft/TypeScript/issues/31326
og:image:altTypeScript Version: 3.5.0-dev.20190509 Search Terms: generic type parameter, scope leak, scope escape, conditional type, mapped type Code type Hmm = U extends T ? { [K in keyof U]: ...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamejcalz
hostnamegithub.com
expected-hostnamegithub.com
Noneb2de8c74e5e61e893155ba46ee41bc66170c1644cb795adefa8386d490f7781c
turbo-cache-controlno-preview
go-importgithub.com/microsoft/TypeScript git https://github.com/microsoft/TypeScript.git
octolytics-dimension-user_id6154722
octolytics-dimension-user_loginmicrosoft
octolytics-dimension-repository_id20929025
octolytics-dimension-repository_nwomicrosoft/TypeScript
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id20929025
octolytics-dimension-repository_network_root_nwomicrosoft/TypeScript
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
released1866027ded575df8a15c731dd8b9986c9483ceb
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/microsoft/TypeScript/issues/31326#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmicrosoft%2FTypeScript%2Fissues%2F31326
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
Code QualityEnforce quality at mergehttps://github.com/features/code-quality
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmicrosoft%2FTypeScript%2Fissues%2F31326
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=microsoft%2FTypeScript
Reloadhttps://github.com/microsoft/TypeScript/issues/31326
Reloadhttps://github.com/microsoft/TypeScript/issues/31326
Reloadhttps://github.com/microsoft/TypeScript/issues/31326
Please reload this pagehttps://github.com/microsoft/TypeScript/issues/31326
microsoft https://github.com/microsoft
TypeScripthttps://github.com/microsoft/TypeScript
Notifications https://github.com/login?return_to=%2Fmicrosoft%2FTypeScript
Fork 13.6k https://github.com/login?return_to=%2Fmicrosoft%2FTypeScript
Star 110k https://github.com/login?return_to=%2Fmicrosoft%2FTypeScript
Code https://github.com/microsoft/TypeScript
Issues 5k+ https://github.com/microsoft/TypeScript/issues
Pull requests 21 https://github.com/microsoft/TypeScript/pulls
Actions https://github.com/microsoft/TypeScript/actions
Projects https://github.com/microsoft/TypeScript/projects
Models https://github.com/microsoft/TypeScript/models
Wiki https://github.com/microsoft/TypeScript/wiki
Security and quality 0 https://github.com/microsoft/TypeScript/security
Insights https://github.com/microsoft/TypeScript/pulse
Code https://github.com/microsoft/TypeScript
Issues https://github.com/microsoft/TypeScript/issues
Pull requests https://github.com/microsoft/TypeScript/pulls
Actions https://github.com/microsoft/TypeScript/actions
Projects https://github.com/microsoft/TypeScript/projects
Models https://github.com/microsoft/TypeScript/models
Wiki https://github.com/microsoft/TypeScript/wiki
Security and quality https://github.com/microsoft/TypeScript/security
Insights https://github.com/microsoft/TypeScript/pulse
#31337https://github.com/microsoft/TypeScript/pull/31337
Mapped conditional type leaks unbound type parameterhttps://github.com/microsoft/TypeScript/issues/31326#top
#31337https://github.com/microsoft/TypeScript/pull/31337
https://github.com/ahejlsberg
BugA bug in TypeScripthttps://github.com/microsoft/TypeScript/issues?q=state%3Aopen%20label%3A%22Bug%22
FixedA PR has been merged for this issuehttps://github.com/microsoft/TypeScript/issues?q=state%3Aopen%20label%3A%22Fixed%22
TypeScript 3.5.0https://github.com/microsoft/TypeScript/milestone/89
https://github.com/jcalz
jcalzhttps://github.com/jcalz
on May 9, 2019https://github.com/microsoft/TypeScript/issues/31326#issue-442287064
👨‍💻🔗https://www.typescriptlang.org/play//#src=type%20Hmm%3CT%2C%20U%20extends%20T%3E%20%3D%20U%20extends%20T%20%3F%20%7B%20%5BK%20in%20keyof%20U%5D%3A%20number%20%7D%20%3A%20never%3B%0D%0Atype%20What%20%3D%20Hmm%3C%7B%7D%2C%20%7B%20a%3A%20string%20%7D%3E%0D%0A%2F%2F%20type%20What%20%3D%20%7B%20%5BK%20in%20keyof%20(T%20%26%20%7B%20a%3A%20string%3B%20%7D)%5D%3A%20number%3B%20%7D%20%F0%9F%A4%AA%0D%0Aconst%20w%3A%20What%20%3D%20%7B%20a%3A%204%20%7D%3B%20%20%2F%2F%20error!%20'%7B%20a%3A%20number%3B%20%7D'%20not%20assignable%20to%20What%0D%0A
#29437https://github.com/microsoft/TypeScript/pull/29437
#31099https://github.com/microsoft/TypeScript/issues/31099
Relevant SO questionhttps://stackoverflow.com/questions/56050214/typescript-nested-map-type-gives-confusing-type-hints
ahejlsberghttps://github.com/ahejlsberg
BugA bug in TypeScripthttps://github.com/microsoft/TypeScript/issues?q=state%3Aopen%20label%3A%22Bug%22
FixedA PR has been merged for this issuehttps://github.com/microsoft/TypeScript/issues?q=state%3Aopen%20label%3A%22Fixed%22
TypeScript 3.5.0https://github.com/microsoft/TypeScript/milestone/89
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.