-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathtraits_modules.rs
1045 lines (954 loc) · 27 KB
/
traits_modules.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#![feature(rustc_private)]
#[macro_use]
mod common;
use common::*;
test_verify_one_file! {
#[test] test_supported_8 verus_code! {
mod M1 {
pub trait T<A> {
fn f(&self, a: &A);
}
}
mod M2 {
pub struct S<A> { a: A }
}
mod M3 {
impl crate::M1::T<u8> for crate::M2::S<u8> {
fn f(&self, a: &u8) {}
}
}
mod M4 {
impl crate::M1::T<bool> for crate::M2::S<bool> {
fn f(&self, a: &bool) {}
}
}
} => Ok(())
}
test_verify_one_file! {
#[test] test_supported_9 verus_code! {
mod M1 {
pub trait T<A> {
fn f(&self, a: A) -> A;
}
}
mod M2 {
pub struct S {}
impl crate::M1::T<bool> for S {
fn f(&self, a: bool) -> bool { !a }
}
}
mod M3 {
impl crate::M1::T<u64> for crate::M2::S {
fn f(&self, a: u64) -> u64 { a / 2 }
}
}
mod M4 {
use crate::M1::T;
fn test() {
let s = crate::M2::S {};
s.f(true);
s.f(10);
}
}
} => Ok(())
}
test_verify_one_file! {
#[test] test_ill_formed_7 code! {
mod M1 {
pub trait T1 {
fn f(&self) {
builtin::no_method_body()
}
}
}
mod M2 {
struct S {}
impl crate::M1::T1 for S {
fn f(&self) {
builtin::no_method_body() // can't appear in implementation
}
}
}
} => Err(err) => assert_vir_error_msg(err, "no_method_body can only appear in trait method declarations")
}
test_verify_one_file! {
#[test] test_ill_formed_8 verus_code! {
mod M1 {
pub trait T1 {
fn f(&self);
}
}
mod M2 {
struct S {}
impl crate::M1::T1 for S {
fn f(&self)
requires true // no requires allowed
{
}
}
}
} => Err(err) => assert_vir_error_msg(err, "trait method implementation cannot declare requires")
}
test_verify_one_file! {
#[test] test_mode_matches_1 verus_code! {
mod M1 {
pub trait T1 {
spec fn f(&self);
}
}
mod M2 {
struct S {}
impl crate::M1::T1 for S {
fn f(&self) {
}
}
}
} => Err(err) => assert_vir_error_msg(err, "function must have mode spec")
}
test_verify_one_file! {
#[test] test_mode_matches_2 verus_code! {
mod M1 {
pub trait T1 {
fn f(&self);
}
}
mod M2 {
struct S {}
impl crate::M1::T1 for S {
closed spec fn f(&self) {
}
}
}
} => Err(err) => assert_vir_error_msg(err, "function must have mode exec")
}
test_verify_one_file! {
#[test] test_mode_matches_3 verus_code! {
mod M1 {
pub trait T1 {
fn f(#[verifier::spec] &self);
}
}
mod M2 {
struct S {}
impl crate::M1::T1 for S {
fn f(&self) {
}
}
}
} => Err(err) => assert_vir_error_msg(err, "parameter must have mode spec")
}
test_verify_one_file! {
#[test] test_mode_matches_4 verus_code! {
mod M1 {
pub trait T1 {
fn f(&self);
}
}
mod M2 {
struct S {}
impl crate::M1::T1 for S {
fn f(#[verifier::spec] &self) {
}
}
}
} => Err(err) => assert_vir_error_msg(err, "parameter must have mode exec")
}
test_verify_one_file! {
#[test] test_mode_matches_5 verus_code! {
mod M1 {
pub trait T1 {
fn f(&self, #[verifier::spec] b: bool);
}
}
mod M2 {
struct S {}
impl crate::M1::T1 for S {
fn f(&self, b: bool) {
}
}
}
} => Err(err) => assert_vir_error_msg(err, "parameter must have mode spec")
}
test_verify_one_file! {
#[test] test_mode_matches_6 verus_code! {
mod M1 {
pub trait T1 {
fn f(&self, b: bool);
}
}
mod M2 {
struct S {}
impl crate::M1::T1 for S {
fn f(&self, #[verifier::spec] b: bool) {
}
}
}
} => Err(err) => assert_vir_error_msg(err, "parameter must have mode exec")
}
test_verify_one_file! {
#[test] test_mode_matches_7 verus_code! {
mod M1 {
pub trait T1 {
#[verifier::returns(spec)] /* vattr */
fn f(&self) -> bool;
}
}
mod M2 {
struct S {}
impl crate::M1::T1 for S {
fn f(&self) -> bool {
true
}
}
}
} => Err(err) => assert_vir_error_msg(err, "function return value must have mode spec")
}
test_verify_one_file! {
#[test] test_mode_matches_8 verus_code! {
mod M1 {
pub trait T1 {
fn f(&self) -> bool;
}
}
mod M2 {
struct S {}
impl crate::M1::T1 for S {
#[verifier::returns(spec)] /* vattr */
fn f(&self) -> bool {
true
}
}
}
} => Err(err) => assert_vir_error_msg(err, "function return value must have mode exec")
}
test_verify_one_file! {
#[test] test_termination_1 verus_code! {
mod M1 {
pub trait T {
spec fn f(&self);
}
pub closed spec fn rec<A: T>(x: &A) {
x.f();
}
}
mod M2 {
pub struct S {}
impl crate::M1::T for S {
closed spec fn f(&self) {
crate::M1::rec(self);
}
}
}
mod M3 {
#[allow(unused_imports)] use crate::M1::T;
proof fn test() {
let s = crate::M2::S {};
s.f();
}
}
} => Err(err) => assert_vir_error_msg(err, "found a cyclic self-reference in a definition")
}
test_verify_one_file! {
#[test] test_termination_2 verus_code! {
mod M1 {
pub trait T {
spec fn f<A: T>(&self, x: &A);
}
}
mod M2 {
pub struct S {}
impl crate::M1::T for S {
closed spec fn f<A: crate::M1::T>(&self, x: &A) {
x.f(x)
}
}
}
mod M3 {
#[allow(unused_imports)] use crate::M1::T;
proof fn test() {
let s = crate::M2::S {};
s.f(&s);
}
}
} => Err(err) => assert_vir_error_msg(err, "found a cyclic self-reference in a definition")
}
test_verify_one_file! {
#[test] test_termination_3 verus_code! {
mod M1 {
pub trait T {
spec fn f(&self);
}
}
mod M2 {
struct S {}
impl crate::M1::T for S {
closed spec fn f(&self) {
self.f()
}
}
}
} => Err(err) => assert_vir_error_msg(err, "recursive function must have a decreases clause")
}
test_verify_one_file! {
#[test] test_termination_4_ok verus_code! {
mod M1 {
pub trait T {
fn f(&self, x: &Self, n: u64);
}
}
mod M2 {
struct S {}
impl crate::M1::T for S {
fn f(&self, x: &Self, n: u64) {
builtin::decreases(n);
if n > 0 {
self.f(x, n - 1);
x.f(self, n - 1);
}
}
}
}
} => Ok(err) => {
assert!(err.warnings.iter().find(|x| x.message.contains("decreases checks in exec functions do not guarantee termination of functions with loops or of their callers")).is_some());
}
}
test_verify_one_file! {
#[test] test_termination_4_fail_1a verus_code! {
mod M1 {
pub trait T {
fn f(&self, x: &Self, n: u64);
}
}
mod M2 {
struct S {}
impl crate::M1::T for S {
fn f(&self, x: &Self, n: u64)
{
builtin::decreases(0);
self.f(x, n - 1); // FAILS
}
}
}
} => Err(err) => {
assert_eq!(err.errors.len(), 2);
assert!(relevant_error_span(&err.errors[0].spans).text.iter().find(|x| x.text.contains("FAILS")).is_some());
assert!(relevant_error_span(&err.errors[1].spans).text.iter().find(|x| x.text.contains("FAILS")).is_some());
}
}
test_verify_one_file! {
#[test] test_termination_4_fail_1b verus_code! {
mod M1 {
pub trait T {
fn f(&self, x: &Self, n: u64);
}
}
mod M2 {
struct S {}
impl crate::M1::T for S {
fn f(&self, x: &Self, n: u64) {
builtin::decreases(n);
self.f(x, n - 1); // FAILS
}
}
}
} => Err(err) => {
assert_eq!(err.errors.len(), 2);
assert!(relevant_error_span(&err.errors[0].spans).text.iter().find(|x| x.text.contains("FAILS")).is_some());
assert!(relevant_error_span(&err.errors[1].spans).text.iter().find(|x| x.text.contains("FAILS")).is_some());
}
}
test_verify_one_file! {
#[test] test_termination_4_fail_1c verus_code! {
mod M1 {
pub trait T {
fn f(&self, x: &Self, n: u64);
}
}
mod M2 {
#[allow(unused_imports)] use crate::M1::T;
struct S {}
impl crate::M1::T for S {
fn f(&self, x: &Self, n: u64) {
builtin::decreases(n);
g(self, x, n - 1); // FAILS
}
}
fn g(x: &S, y: &S, n: u64) {
if 0 < n {
x.f(y, n - 1);
}
}
}
} => Err(err) => {
assert_eq!(err.errors.len(), 2);
assert!(relevant_error_span(&err.errors[0].spans).text.iter().find(|x| x.text.contains("FAILS")).is_some());
assert!(relevant_error_span(&err.errors[1].spans).text.iter().find(|x| x.text.contains("FAILS")).is_some());
}
}
test_verify_one_file! {
#[test] test_termination_4_fail_2a verus_code! {
mod M1 {
pub trait T {
fn f(&self, x: &Self, n: u64);
}
}
mod M2 {
struct S {}
impl crate::M1::T for S {
fn f(&self, x: &Self, n: u64) {
builtin::decreases(0);
x.f(self, n - 1); // FAILS
}
}
}
} => Err(err) => {
assert_eq!(err.errors.len(), 2);
assert!(relevant_error_span(&err.errors[0].spans).text.iter().find(|x| x.text.contains("FAILS")).is_some());
assert!(relevant_error_span(&err.errors[1].spans).text.iter().find(|x| x.text.contains("FAILS")).is_some());
}
}
test_verify_one_file! {
#[test] test_termination_4_fail_2b verus_code! {
mod M1 {
pub trait T {
fn f(&self, x: &Self, n: u64);
}
}
mod M2 {
struct S {}
impl crate::M1::T for S {
fn f(&self, x: &Self, n: u64) {
builtin::decreases(n);
x.f(self, n - 1); // FAILS
}
}
}
} => Err(err) => {
assert_eq!(err.errors.len(), 2);
assert!(relevant_error_span(&err.errors[0].spans).text.iter().find(|x| x.text.contains("FAILS")).is_some());
assert!(relevant_error_span(&err.errors[1].spans).text.iter().find(|x| x.text.contains("FAILS")).is_some());
}
}
test_verify_one_file! {
#[test] test_verify_1 verus_code! {
mod M1 {
pub trait T {
fn f(&self)
requires false;
}
}
mod M2 {
#[allow(unused_imports)] use crate::M1::T;
struct S {}
impl crate::M1::T for S {
fn f(&self) {}
}
fn test() {
let s = S {};
s.f(); // FAILS
}
}
} => Err(err) => assert_one_fails(err)
}
test_verify_one_file! {
#[test] test_verify_2 verus_code! {
mod M1 {
pub trait T {
fn f(&self)
ensures false; // TRAIT
}
}
mod M2 {
struct S {}
impl crate::M1::T for S {
fn f(&self) {} // FAILS
}
}
} => Err(err) => assert_one_fails(err)
}
test_verify_one_file! {
#[test] test_verify_3 verus_code! {
mod M1 {
pub trait T {
spec fn req(&self) -> bool;
fn f(&self)
requires self.req();
}
}
mod M2 {
pub struct S {}
impl crate::M1::T for S {
closed spec fn req(&self) -> bool { false }
fn f(&self) {}
}
}
mod M3 {
#[allow(unused_imports)] use crate::M1::T;
fn test() {
let s = crate::M2::S {};
s.f(); // FAILS
}
}
} => Err(err) => assert_one_fails(err)
}
test_verify_one_file! {
#[test] test_verify_4 verus_code! {
mod M1 {
pub trait T {
spec fn ens(&self) -> bool;
fn f(&self)
ensures self.ens(); // TRAIT
}
}
mod M2 {
struct S {}
impl crate::M1::T for S {
closed spec fn ens(&self) -> bool { false }
fn f(&self) {} // FAILS
}
}
} => Err(err) => assert_one_fails(err)
}
test_verify_one_file! {
#[test] test_verify_5_private verus_code! {
mod M1 {
pub trait T {
spec fn req(&self) -> bool;
fn f(&self)
requires self.req();
}
}
mod M2 {
pub struct S {}
impl crate::M1::T for S {
closed spec fn req(&self) -> bool { true }
fn f(&self) {}
}
}
mod M3 {
#[allow(unused_imports)] use crate::M1::T;
fn test1(s: &crate::M2::S) {
s.f(); // FAILS
}
}
mod M4 {
fn test2<A: crate::M1::T>(a: &A) {
a.f(); // FAILS
}
}
} => Err(err) => assert_fails(err, 2)
}
test_verify_one_file! {
#[test] test_verify_5_publish verus_code! {
mod M1 {
pub trait T {
spec fn req(&self) -> bool;
fn f(&self)
requires self.req();
}
}
mod M2 {
pub struct S {}
impl crate::M1::T for S {
open spec fn req(&self) -> bool { true }
fn f(&self) {}
}
}
mod M3 {
#[allow(unused_imports)] use crate::M1::T;
fn test1(s: &crate::M2::S) {
s.f();
}
}
mod M4 {
fn test2<A: crate::M1::T>(a: &A) {
a.f(); // FAILS
}
}
} => Err(err) => assert_one_fails(err)
}
test_verify_one_file! {
#[test] test_verify_6 verus_code! {
mod M1 {
pub trait T<A> {
spec fn req(&self, a: A) -> bool;
spec fn ens(&self, a: A, r: A) -> bool;
fn f(&self, a: &A) -> (ra: A)
requires self.req(*a),
ensures self.ens(*a, ra); // TRAIT
}
}
mod M2 {
pub struct B {
pub x: bool,
}
}
mod M3 {
pub struct I {
pub x: u64,
}
}
mod M4 {
impl crate::M1::T<bool> for crate::M2::B {
closed spec fn req(&self, a: bool) -> bool {
a
}
closed spec fn ens(&self, a: bool, r: bool) -> bool {
r == (a && self.x)
}
fn f(&self, a: &bool) -> bool {
*a && self.x
}
}
}
mod M5 {
use builtin::*;
impl crate::M1::T<u64> for crate::M3::I {
closed spec fn req(&self, a: u64) -> bool {
self.x < a && a < 100
}
closed spec fn ens(&self, a: u64, r: u64) -> bool {
self.x <= r && r < 100
}
fn f(&self, a: &u64) -> u64 {
self.x / 2 + a // FAILS
}
}
}
mod M6 {
pub fn p<A, Z: crate::M1::T<A>>(a: &A, z: &Z) -> (rz: A)
requires z.req(*a)
ensures z.ens(*a, rz)
{
z.f(a)
}
}
mod M7 {
fn test() {
let i = crate::M3::I { x: 30 };
vstd::pervasive::print_u64(crate::M6::p(&10, &i)); // FAILS
}
}
} => Err(err) => assert_fails(err, 2)
}
test_verify_one_file! {
#[test] test_multiple verus_code! {
mod M1 {
use builtin::*;
pub trait T1 {
fn f1(&self, u: u64)
requires u > 10;
}
}
mod M2 {
use builtin::*;
pub trait T2 {
fn f2(&self, u: u64)
requires u > 20;
}
}
mod M3 {
pub struct S {}
}
mod M4 {
impl crate::M1::T1 for crate::M3::S {
fn f1(&self, u: u64) {}
}
}
mod M5 {
impl crate::M2::T2 for crate::M3::S {
fn f2(&self, u: u64) {}
}
}
mod M6 {
fn test<A: crate::M1::T1 + crate::M2::T2>(a: &A) {
a.f1(25);
a.f2(25);
a.f1(15);
a.f2(15); // FAILS
}
}
} => Err(err) => assert_one_fails(err)
}
test_verify_one_file! {
#[test] test_generic_1_private verus_code! {
mod M1 {
pub trait T<A> {
spec fn apple(&self, b: A) -> bool;
}
}
mod M2 {
pub struct S<A, B>(pub A, pub B);
}
mod M3 {
use builtin::*;
impl<C> crate::M1::T<(C, u16)> for crate::M2::S<bool, C> {
closed spec fn apple(&self, b: (C, u16)) -> bool {
b.1 > 10
}
}
}
mod M4 {
#[allow(unused_imports)] use crate::M1::T;
proof fn test() -> (b: bool)
ensures b // FAILS
{
let i: u8 = 10;
let s = crate::M2::S(true, i);
let b: bool = s.apple((i, 20));
b
}
}
} => Err(err) => assert_one_fails(err)
}
test_verify_one_file! {
#[test] test_generic_1_public_ok verus_code! {
mod M1 {
pub trait T<A> {
spec fn apple(&self, b: A) -> bool;
}
}
mod M2 {
pub struct S<A, B>(pub A, pub B);
}
mod M3 {
use builtin::*;
impl<C> crate::M1::T<(C, u16)> for crate::M2::S<bool, C> {
open spec fn apple(&self, b: (C, u16)) -> bool {
b.1 > 10
}
}
}
mod M4 {
#[allow(unused_imports)] use crate::M1::T;
proof fn test() -> (b: bool)
ensures b
{
let i: u8 = 10;
let s = crate::M2::S(true, i);
let b: bool = s.apple((i, 20));
b
}
}
} => Ok(())
}
test_verify_one_file! {
#[test] test_generic_1_ok_markers verus_code! {
mod M1 {
pub trait T<A: Sized> : Sized {
spec fn apple(&self, b: A) -> bool;
}
}
mod M2 {
use builtin::*;
pub struct S<A: Sized, B: Sized>(pub A, pub B);
impl<C: Sized> crate::M1::T<(C, u16)> for S<bool, C> {
open spec fn apple(&self, b: (C, u16)) -> bool {
b.1 > 10
}
}
}
mod M3 {
#[allow(unused_imports)] use crate::M1::T;
proof fn test() -> (b: bool)
ensures b
{
let i: u8 = 10;
let s = crate::M2::S(true, i);
let b: bool = s.apple((i, 20));
b
}
}
} => Ok(())
}
test_verify_one_file! {
#[test] test_generic_1_fail verus_code! {
mod M1 {
pub trait T<A> {
spec fn apple(&self, b: A) -> bool;
fn banana(&self, b: A) -> A;
}
}
mod M2 {
use builtin::*;
pub struct S<A, B>(pub A, pub B);
impl<C> crate::M1::T<(C, u16)> for S<bool, C> {
closed spec fn apple(&self, b: (C, u16)) -> bool {
b.1 > 10
}
fn banana(&self, b: (C, u16)) -> (C, u16) {
(b.0, 10)
}
}
}
mod M3 {
#[allow(unused_imports)] use crate::M1::T;
proof fn test() -> (b: bool)
ensures b // FAILS
{
let i: u8 = 10;
let s = crate::M2::S(true, i);
let b: bool = s.apple((i, 5));
b
}
}
} => Err(err) => assert_one_fails(err)
}
test_verify_one_file! {
#[test] test_generic_2 verus_code! {
mod M1 {
pub trait T<A> {
spec fn apple(&self, b: A) -> bool;
fn banana(&self, b: A) -> A;
}
}
mod M2 {
use builtin::*;
pub struct S<A, B>(pub A, pub B);
impl crate::M1::T<u8> for S<u16, u32> {
open spec fn apple(&self, b: u8) -> bool {
b > 10
}
fn banana(&self, b: u8) -> u8 {
b / 2
}
}
}
mod M3 {
#[allow(unused_imports)] use crate::M1::T;
proof fn test() -> (b: bool)
ensures b // FAILS
{
let s = crate::M2::S(10, 20);
let b: bool = s.apple(5);
b
}
}
} => Err(err) => assert_one_fails(err)
}
test_verify_one_file! {
#[test] test_generic_3 verus_code! {
mod M1 {
pub trait T {
spec fn apple(&self, b: bool) -> bool;
fn banana(&self)
requires self.apple(true),
ensures true;
}
}
mod M2 {
pub struct S<A, B>(pub A, pub B);
}
mod M3 {
pub fn f1<A: crate::M1::T>(a: &A)
requires a.apple(true)
{
a.banana();
}
}
mod M4 {
impl crate::M1::T for crate::M2::S<bool, bool> {
open spec fn apple(&self, b: bool) -> bool {
self.0 && self.1 && b
}
fn banana(&self) {
}
}
}
mod M5 {
#[allow(unused_imports)] use crate::M1::T;
fn test1() {
let s = crate::M2::S(true, true);
s.banana();
crate::M3::f1(&s);
}
}
mod M6 {
#[allow(unused_imports)] use crate::M1::T;
fn test2() {
let s = crate::M2::S(true, false);
s.banana(); // FAILS
}
}
mod M7 {
fn test3() {
let s = crate::M2::S(true, false);
crate::M3::f1(&s); // FAILS
}
}
} => Err(err) => assert_fails(err, 2)
}
test_verify_one_file! {
#[test] test_self_ok verus_code! {
mod M1 {
pub trait T {
spec fn r<'a>(&'a self, x: &'a Self, b: bool) -> &'a Self;
fn f<'a>(&'a self, x: &'a Self, b: bool) -> (r: &'a Self)
ensures
b ==> r === self,
!b ==> r === x;
}
fn p<A: T>(a1: &A, a2: &A) {
let a3 = a1.f(a2, true);
assert(a3 === a1);
}
}
mod M2 {
pub struct S(pub u8);
impl crate::M1::T for S {
closed spec fn r<'a>(&'a self, x: &'a Self, b: bool) -> &'a Self {
if b { self } else { x }
}
fn f<'a>(&'a self, x: &'a Self, b: bool) -> &'a Self {
let x = if b { self } else { x };
assert(x === self.r(x, b));
x
}
}
}
mod M3 {
#[allow(unused_imports)] use crate::M1::T;
fn test() {
let s1 = crate::M2::S(1);
let s2 = crate::M2::S(2);
let s3 = s1.f(&s2, true);