mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-29 20:34:44 +00:00
8 lines
186 B
Rust
8 lines
186 B
Rust
use erg_compiler::context::Context;
|
|
|
|
#[test]
|
|
fn test_subtyping() -> Result<(), ()> {
|
|
let context = Context::new_root_module();
|
|
context.test_refinement_subtyping()?;
|
|
Ok(())
|
|
}
|