mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
15 lines
193 B
Rust
15 lines
193 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() {}
|