summaryrefslogtreecommitdiff
path: root/test-suite/output/bug6404.v
blob: bbe6b1a00fdf174fc9d8c9adda5abc77ca36f60b (plain)
1
2
3
4
5
6
7
Ltac a _ := pose (I : I).
Ltac b _ := a ().
Ltac abs _ := transparent_abstract b ().
Ltac c _ := abs ().
Goal True.
  Fail c ().
Abort.