-
Bug
-
Resolution: Done
-
Major
-
4.0.0.Alpha1
-
None
1. Create the following types:
package cditest; import javax.enterprise.inject.Typed; @Typed(LocalTest.class) public class NewTest implements LocalExtendedTest { }
package cditest; public interface LocalTest { }
package cditest; public interface LocalExtendedTest { }
2. Build the project.
3. There is a validation problem on NewTest bean since @Typed is not correct
4. Edit LocalExtendedTest.java:
package cditest; public interface LocalExtendedTest extends LocalTest { }
5. Save the file.
6. FAILURE: NewTest in not re-validated and the error is not gone.