We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
processInaccessibleAsCtor
1 parent 14ff08d commit 00a57c5Copy full SHA for 00a57c5
tests/lean/run/issue10792.lean
@@ -0,0 +1,8 @@
1
+inductive Vec (α : Type) : Nat → Type where
2
+ | nil : Vec α 0
3
+ | cons (x : α) (xs : Vec α n) : Vec α (n.succ)
4
+
5
+-- set_option trace.Meta.Match.match true
6
7
+def test : Vec Unit 10000 → Nat
8
+ | Vec.cons () _ => 1
0 commit comments