luaur_analysis/methods/
subtyping_operator_assign_subtyping.rs1use crate::records::subtyping::Subtyping;
2
3impl Subtyping {
4 pub fn operator_assign(&mut self, _other: &Subtyping) {
5 unimplemented!("Subtyping copy assignment is deleted in C++");
6 }
7}