Closes #317: Preproc behavior when size defined in user class.

Though this was already fixed, just adding a test to confirm that it stays fixed. Need to respect calls to user-definined size methods including those defined in user-made classes.
This commit is contained in:
A Pottinger
2022-01-29 15:19:01 -08:00
parent c7d6cba2a8
commit 30cee886da
3 changed files with 76 additions and 0 deletions

View File

@@ -410,4 +410,9 @@ public class ParserTests {
expectRunnerException("mixing", 1);
}
@Test
public void testSizeClass() {
expectGood("sizeclass");
}
}