Skip to content

Commit 2f235c3

Browse files
committed
Tweak dir layout; add negative test case
1 parent 5f0f8d9 commit 2f235c3

File tree

13 files changed

+4714
-1
lines changed

13 files changed

+4714
-1
lines changed

verifast-proofs/alloc/collections/linked_list.rs-negative/verified/linked_list.rs

Lines changed: 2408 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
// verifast_options{skip_specless_fns}
2+
3+
#![no_std]
4+
#![allow(internal_features)]
5+
#![allow(incomplete_features)]
6+
#![feature(allocator_api)]
7+
#![feature(staged_api)]
8+
#![feature(rustc_attrs)]
9+
#![feature(dropck_eyepatch)]
10+
#![feature(specialization)]
11+
#![feature(extend_one)]
12+
#![feature(exact_size_is_empty)]
13+
#![feature(hasher_prefixfree_extras)]
14+
#![feature(box_into_inner)]
15+
16+
#![stable(feature = "rust1", since = "1.0.0")]
17+
18+
extern crate alloc as std;
19+
20+
#[stable(feature = "rust1", since = "1.0.0")]
21+
pub use std::alloc as alloc;
22+
#[stable(feature = "rust1", since = "1.0.0")]
23+
pub use std::boxed as boxed;
24+
25+
trait SpecExtend<I> {
26+
fn spec_extend(&mut self, iter: I);
27+
}
28+
29+
pub mod linked_list;

0 commit comments

Comments
 (0)