Fix for issue 396: Static constructors generated for classes with type parameters did not work in javac.

This commit is contained in:
Reinier Zwitserloot
2012-07-17 00:15:40 +02:00
parent a382c21d46
commit dd18f63ee5
5 changed files with 104 additions and 12 deletions
@@ -22,3 +22,7 @@
final T x;
String name;
}
@lombok.RequiredArgsConstructor(staticName="of") class RequiredArgsConstructorStaticNameGenerics2<T extends Number> {
final Class<T> x;
String name;
}