public class Broken {
public enum Should {
Foo
}
public static class Work {
}
public Broken(Should should, Work work) {
}
}
Will fail like this
> scaladoc Broken.java
Broken.java:9: error: not found: type Should
public Broken(Should should, Work work) {
^
Broken.java:9: error: not found: type Work
public Broken(Should should, Work work) {
^
model contains 2 documentable templates
two errors found
This simple file
Broken.java
Will fail like this
Works with ScalaDoc 2.11.11