Skip to content

Commit b61e010

Browse files
Add test from i19007
1 parent 0f2f9f9 commit b61e010

File tree

4 files changed

+20
-0
lines changed

4 files changed

+20
-0
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
class MyRunConfigurationScala extends RunConfigurationBase
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
public interface RunConfiguration extends Cloneable {
3+
RunConfiguration clone();
4+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
public abstract class RunConfigurationBase<T> extends UserDataHolderBase implements RunConfiguration {
2+
@Override
3+
public RunConfiguration clone() {
4+
return null;
5+
}
6+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import java.util.concurrent.atomic.AtomicReference;
2+
3+
public class UserDataHolderBase extends AtomicReference<String> {
4+
@Override
5+
protected Object clone() {
6+
return null;
7+
}
8+
}

0 commit comments

Comments
 (0)