blob: 57f961ac97ec59aee4a1f7297d7b1076c308970b [file] [log] [blame]
use crate::Interner;
pub trait BoundVars<I: Interner> {
fn bound_vars(&self) -> I::BoundVars;
fn has_no_bound_vars(&self) -> bool;
}