mirror of
https://gitee.com/openharmony/third_party_rust_cxx
synced 2024-11-24 07:40:19 +00:00
11 lines
261 B
Rust
11 lines
261 B
Rust
#![allow(clippy::let_underscore_drop)]
|
|
|
|
use cxx::{CxxString, UniquePtr};
|
|
|
|
#[test]
|
|
#[should_panic = "called deref on a null UniquePtr<CxxString>"]
|
|
fn test_deref_null() {
|
|
let unique_ptr = UniquePtr::<CxxString>::null();
|
|
let _: &CxxString = &unique_ptr;
|
|
}
|