Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions message-index/messages/GHC-88464/example4/after/Example4.hs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module Example4 where

foo :: Eq a => a -> Bool
foo x = x == x
4 changes: 4 additions & 0 deletions message-index/messages/GHC-88464/example4/before/Example4.hs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module Example4 where

foo :: Eq a => a -> Bool
foo = _
39 changes: 39 additions & 0 deletions message-index/messages/GHC-88464/example4/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
---
title: Used a typed hole
---

## Error Message

```
Example4.hs:4:7: error: [GHC-88464]
• Found hole: _ :: a -> Bool
Where: ‘a’ is a rigid type variable bound by
the type signature for:
foo :: forall a. Eq a => a -> Bool
at Example4.hs:3:1-24
• In an equation for ‘foo’: foo = _
• Relevant bindings include
foo :: a -> Bool (bound at Example4.hs:4:1)
Constraints include Eq a (from Example4.hs:3:1-24)
Valid hole fits include foo :: a -> Bool (bound at Example4.hs:4:1)
|
4 | foo = _
| ^
```

## Description

Typed holes are very useful! They work in _expressions_ (i.e. not in patterns or types). They generate an error, ensuring that you don't forget to put some code there, but the error message is designed to give you information about what kind of code fits here.

Here is the [GHC user's guide on typed holes](https://downloads.haskell.org/ghc/latest/docs/users_guide/exts/typed_holes.html).

In the error message, the most important parts are:

- The type of the hole: `a -> Bool` in this case.
- Where the type variables come from that appear in this type; `a` here comes from `foo`'s type signature.
- Relevant constraints: in this case, we know that `Eq a` holds. This list is in general not exhaustive; sometimes there are many possibly (indirectly) relevant constraints, and GHC has to make some selection of what to show.
- Valid hole fits: these are suggestions from GHC of names that would typecheck in the hole. This is also in general not an exhaustive list, and typically you'll want to write code that is not quite as simple as a single variable. In this case, GHC sees that `foo` fits — which is not terribly helpful.

Typed holes can be used for what is sometimes called _type-driven programming_: ask GHC what type it wants in a particular place, decide that the code should then look roughly like so (with the parts you don't yet know filled in with holes `_` again), ask GHC for the types of those holes, etc. This is mostly useful when you have very precise types in your code, typically involving some type-level programming.

If you want to test your code while you still have typed holes in your code, pass the [`-fdefer-typed-holes`](https://downloads.haskell.org/ghc/latest/docs/users_guide/exts/defer_type_errors.html#ghc-flag--fdefer-typed-holes) flag to GHC. More generally, there is also the much more aggressive [`-fdefer-type-errors`](https://downloads.haskell.org/ghc/latest/docs/users_guide/exts/defer_type_errors.html#ghc-flag--fdefer-type-errors).
2 changes: 2 additions & 0 deletions message-index/messages/GHC-88464/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ In Haskell, every variable comes into existence at a specific location. Examples

A common situation where this error occurs is when the programmer forgets to import some name from a module. In that case, the solution is to add the missing import declaration.

Another situation where this error may occur is when you used an explicit _hole_, which is a single underscore (`_`) or a variable name starting with an underscore (e.g. `_foo`).

## Example error text

```
Expand Down