Skip to content

Commit

Permalink
#53 Add test
Browse files Browse the repository at this point in the history
  • Loading branch information
timowest committed Jun 20, 2013
1 parent 29d0617 commit db64d01
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions scalagen/src/test/scala/com/mysema/examples/Constructors3.java
@@ -0,0 +1,21 @@
package com.mysema.examples;


public class Constructors3 {

class A {
public A(String str) {
}
}

class B extends A {
public B() {
super("some value");
}

public B(String str) {
super(str);
}
}

}

0 comments on commit db64d01

Please sign in to comment.