mirror of
https://github.com/weyne85/rustdesk.git
synced 2025-10-29 17:00:05 +00:00
11 lines
243 B
Rust
11 lines
243 B
Rust
extern crate opus;
|
|
|
|
fn main() {
|
|
let mut rp = opus::Repacketizer::new().unwrap();
|
|
let mut wip = rp.begin().cat_move(
|
|
&[1, 2, 3]
|
|
//~^ ERROR borrowed value does not live long enough
|
|
).unwrap();
|
|
wip.out(&mut []);
|
|
}
|