Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
hypnoce committed Jul 12, 2017
1 parent 1179d32 commit ba23bdc
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package org.jboss.weld.tests.unit.ejb.subclass;

public interface IDefault {
default void _(){}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package org.jboss.weld.tests.unit.ejb.subclass;

public class Qux extends Bar implements IDefault {
}
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ public void prepareContainer() {
final BeanDeploymentArchive bda = new BeanDeploymentArchiveImpl("1",
Foo.class,
Bar.class,
Qux.class,
BarLocal.class,
BarDecorator.class,
BarInterceptor.class,
Expand Down

0 comments on commit ba23bdc

Please sign in to comment.