summaryrefslogtreecommitdiff
path: root/test/files/neg/t4851/J2.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t4851/J2.java')
-rw-r--r--test/files/neg/t4851/J2.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/neg/t4851/J2.java b/test/files/neg/t4851/J2.java
index 82954d9489..a90f48e269 100644
--- a/test/files/neg/t4851/J2.java
+++ b/test/files/neg/t4851/J2.java
@@ -1,11 +1,11 @@
public class J2<T> {
T x;
- public <T> J(T x) {
+ public J2(T x) {
this.x = x;
}
public String toString() {
return "J2:" + x.getClass();
}
-} \ No newline at end of file
+}