ccc7651b48
Reachability was considering nested items to be unreachable, which was causing the bug in #2383. Once I fixed that, I also had to make impl::make_impl_vtable instantiate methods where necessary, before calling monomorphic_fn. Closes #2383
9 lines
114 B
Rust
9 lines
114 B
Rust
use std;
|
|
import std::deque;
|
|
import std::deque::t;
|
|
|
|
fn main() {
|
|
let Q = deque::create();
|
|
Q.add_back(10);
|
|
}
|