mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-14 22:02:07 +03:00
e25f0a57f9
Should make a default implicit, not an auto implicit, when running out of arguments and expecting a default implicit. Fixes #371
8 lines
101 B
Idris
8 lines
101 B
Idris
module C
|
|
|
|
import B
|
|
|
|
public export
|
|
bar : {default defaultRec rec : Rec} -> Char
|
|
bar {rec} = field rec
|