Skip to content

Commit

Permalink
Add test #72
Browse files Browse the repository at this point in the history
  • Loading branch information
timowest committed Nov 27, 2013
1 parent 8f3d920 commit 390695a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions scalagen/src/test/scala/com/mysema/examples/ConstructorParams.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package com.mysema.examples;

public class ConstructorParams {

private int bar;

public ConstructorParams(int bar) {
this.bar = bar * 2; // ok in Java
}

}

0 comments on commit 390695a

Please sign in to comment.