mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
14 lines
196 B
Rust
14 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() {}
|