mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
15 lines
196 B
Rust
15 lines
196 B
Rust
|
//@ edition:2018
|
||
|
//@ aux-build:issue-51798.rs
|
||
|
//@ check-pass
|
||
|
|
||
|
extern crate issue_51798;
|
||
|
|
||
|
mod server {
|
||
|
fn f() {
|
||
|
let mut v = issue_51798::vec();
|
||
|
v.clear();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {}
|