src/HOL/Quickcheck_Examples/Quickcheck_Nesting_Example.thy
author Thomas Lindae <thomas.lindae@in.tum.de>
Mon, 01 Jul 2024 18:48:26 +0200
changeset 81028 84f6f17274d0
parent 63731 9f906a2eb0e7
permissions -rw-r--r--
lsp: changed State_Init notification into a request and removed State_Init_Response;

theory Quickcheck_Nesting_Example
imports Quickcheck_Nesting
begin

datatype x = X "x list"

lemma "X a = X b"
quickcheck[exhaustive, size = 4, expect = counterexample]
oops

end