Skip to main content

luaur_analysis/methods/
constraint_solving_incomplete_error_operator_eq.rs

1use crate::records::constraint_solving_incomplete_error::ConstraintSolvingIncompleteError;
2
3impl ConstraintSolvingIncompleteError {
4    #[inline]
5    pub fn operator_eq(&self, _rhs: &ConstraintSolvingIncompleteError) -> bool {
6        true
7    }
8}