diff --git a/tests/struct.sols b/tests/struct.sols index 88f280d..d0aa44e 100644 --- a/tests/struct.sols +++ b/tests/struct.sols @@ -9,8 +9,14 @@ struct Person { self.name = name self.age = age } + + destructor { + // We don't need to do anything here. + } + } max = Person("Max", 16) + puts max -puts max.greet() \ No newline at end of file +puts max.greet()