Title: Improve error message for using value as type · Issue #29778 · microsoft/TypeScript · GitHub
Open Graph Title: Improve error message for using value as type · Issue #29778 · microsoft/TypeScript
X Title: Improve error message for using value as type · Issue #29778 · microsoft/TypeScript
Description: TypeScript Version: 3.4.0-dev.20190206 Search Terms: "cannot find name" type error Code If you use a type as a value you get a nice error message: type t = number; let x = t; // error TS2693: 't' only refers to a type, but is being used ...
Open Graph Description: TypeScript Version: 3.4.0-dev.20190206 Search Terms: "cannot find name" type error Code If you use a type as a value you get a nice error message: type t = number; let x = t; // error TS2693: 't' o...
X Description: TypeScript Version: 3.4.0-dev.20190206 Search Terms: "cannot find name" type error Code If you use a type as a value you get a nice error message: type t = number; let x = t; // error TS2...
Opengraph URL: https://github.com/microsoft/TypeScript/issues/29778
X: @github
Domain: github.com
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Improve error message for using value as type","articleBody":"**TypeScript Version:** 3.4.0-dev.20190206\r\n\r\n\u003c!-- Search terms you tried before logging this (so others can find this issue more easily) --\u003e\r\n**Search Terms:** \"cannot find name\" type error\r\n\r\n**Code**\r\n\r\nIf you use a type as a value you get a nice error message:\r\n\r\n```ts\r\ntype t = number;\r\nlet x = t;\r\n// error TS2693: 't' only refers to a type, but is being used as a value here.\r\n```\r\n\r\nBut if you do the same thing in reverse, you get a really confusing one:\r\n\r\n```ts\r\nlet t = 3;\r\nlet x: t;\r\n// error TS2304: Cannot find name 't'.\r\n```\r\n\r\n**Expected behavior:**\r\n\r\nError message should say something more like the type one.\r\n\r\n**Actual behavior:**\r\n\r\nError message suggests there is no 't' in scope at all, which is very confusing especially when you have imported t from some other file and you thought it was a type.\r\n\r\n**Playground Link:** \r\n\r\nhttps://www.typescriptlang.org/play/#src=%0D%0Afunction%20goodError()%20%7B%0D%0A%20%20%20%20type%20t%20%3D%20number%3B%0D%0A%20%20%20%20let%20x%20%3D%20t%3B%20%2F%2F%20good%20error%20message%0D%0A%7D%0D%0A%0D%0Afunction%20badError()%20%7B%0D%0A%20%20%20%20let%20t%20%3D%203%3B%0D%0A%20%20%20%20let%20x%3A%20t%3B%20%2F%2F%20bad%20error%20message%0D%0A%7D\r\n\r\n**Related Issues:**\r\n\r\nThere are some around this same problem with namespaces I think, like \r\nhttps://github.com/Microsoft/TypeScript/issues/26391 or https://github.com/Microsoft/TypeScript/issues/12075\r\n\r\nI think this issue is more broadly complaining about issues in this area:\r\nhttps://github.com/Microsoft/TypeScript/issues/27630\r\nBut the issue I'm filing here is very specific and concrete, with an easy repro.\r\n\r\nThis issue discusses some suggested fixes for this issue, but I think first we need to fix the error message.\r\nhttps://github.com/Microsoft/TypeScript/issues/28975\r\n","author":{"url":"https://github.com/evmar","@type":"Person","name":"evmar"},"datePublished":"2019-02-06T17:29:33.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":5},"url":"https://github.com/29778/TypeScript/issues/29778"}
| route-pattern | /_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format) |
| route-controller | voltron_issues_fragments |
| route-action | issue_layout |
| fetch-nonce | v2:80d2f092-fac2-0eb0-df5c-bac1930515ea |
| current-catalog-service-hash | 81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114 |
| request-id | 9C78:187399:8B8FA5:C79254:6A637C89 |
| html-safe-nonce | 6f192c3a6ee422fae37029b803062f42b0b25f7a10d13cbf80e335d668dc8dcb |
| visitor-payload | eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5Qzc4OjE4NzM5OTo4QjhGQTU6Qzc5MjU0OjZBNjM3Qzg5IiwidmlzaXRvcl9pZCI6IjU4MzE5NTA3MTM2NDQ4NzQ4ODkiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ== |
| visitor-hmac | b30e86b111f7cb0769dca1e7a3c0ae325ec56940b2cab881aabade577e1057c3 |
| hovercard-subject-tag | issue:407347593 |
| github-keyboard-shortcuts | repository,issues,copilot |
| google-site-verification | Apib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I |
| octolytics-url | https://collector.github.com/github/collect |
| analytics-location | / |
| fb:app_id | 1401488693436528 |
| apple-itunes-app | app-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/microsoft/TypeScript/29778/issue_layout |
| twitter:image | https://opengraph.githubassets.com/90357ea19e4d28b216b880ec48be1d696d63b72e0c2934efd3d2ad79d3675ab0/microsoft/TypeScript/issues/29778 |
| twitter:card | summary_large_image |
| og:image | https://opengraph.githubassets.com/90357ea19e4d28b216b880ec48be1d696d63b72e0c2934efd3d2ad79d3675ab0/microsoft/TypeScript/issues/29778 |
| og:image:alt | TypeScript Version: 3.4.0-dev.20190206 Search Terms: "cannot find name" type error Code If you use a type as a value you get a nice error message: type t = number; let x = t; // error TS2693: 't' o... |
| og:image:width | 1200 |
| og:image:height | 600 |
| og:site_name | GitHub |
| og:type | object |
| og:author:username | evmar |
| hostname | github.com |
| expected-hostname | github.com |
| None | 4c1de337de00c7969335f8866af41463301071379a3a15fba12e9b85aa6378d6 |
| turbo-cache-control | no-preview |
| go-import | github.com/microsoft/TypeScript git https://github.com/microsoft/TypeScript.git |
| octolytics-dimension-user_id | 6154722 |
| octolytics-dimension-user_login | microsoft |
| octolytics-dimension-repository_id | 20929025 |
| octolytics-dimension-repository_nwo | microsoft/TypeScript |
| octolytics-dimension-repository_public | true |
| octolytics-dimension-repository_is_fork | false |
| octolytics-dimension-repository_network_root_id | 20929025 |
| octolytics-dimension-repository_network_root_nwo | microsoft/TypeScript |
| turbo-body-classes | logged-out env-production page-responsive |
| disable-turbo | false |
| browser-stats-url | https://api.github.com/_private/browser/stats |
| browser-errors-url | https://api.github.com/_private/browser/errors |
| release | a4df32552e4c631011bdcd4c81cc3d7408664a8b |
| ui-target | full |
| theme-color | #1e2327 |
| color-scheme | light dark |
Links:
Viewport: width=device-width