// Copyright (C) 2021 Soni L. // SPDX-License-Identifier: MIT OR Apache-2.0 use proptest::prelude::*; proptest! { #[test] fn doesnt_panic(s in "\\PC*") { let _ = datafu::Pattern::>::compile::<&str, &str>(&s, None, None); } }