Closes #290: Support detection of mixed modes in preproc.

Make a more friendly error message when the user is mixing modes, allowing for localization of error.
This commit is contained in:
A Pottinger
2022-01-29 15:08:14 -08:00
parent efd22f8bf1
commit 0f9b290398
5 changed files with 35 additions and 4 deletions

View File

@@ -405,4 +405,9 @@ public class ParserTests {
expectGood("sizethis");
}
@Test
public void testMixing() {
expectRunnerException("mixing", 1);
}
}