zeolite-lang-0.1.0.0: tests/multiple-defs/README.md
# Multiple Definition Failure
Compiling this module should **always fail**. It tests a compiler check that
ensures that multiple `.0rx` files do not define the same `concrete` category
from a `.0rp` file.
To compile:
```shell
../../zeolite -r .
```
The compiler error should look something like this:
```text
Public category Type ["tests/multiple-defs/public.0rp" (line 19, column 1)] is defined 2 times
Defined at "tests/multiple-defs/private2.0rx" (line 19, column 1)
Defined at "tests/multiple-defs/private1.0rx" (line 19, column 1)
```