Merge branch 'mailmap' into 'master'
[why3.git] / examples / tests / regexp-test.why
blob4d48499bb990e95dab4246651c58235410c5c332
1 theory Test
3   use seq.Seq
4   clone regexp.Regexp with type char = int
6   lemma empty_is_empty: forall w: word. not (mem w Empty)
8   constant a: int = 0
9   constant b: int = 1
10   constant c: int = 2
12   goal G: mem (cons a (cons b empty)) (Concat (Char a) (Star (Char b)))
14 end