JavaCompilerCore/test/plugindevelopment/MartinTestCases/Matrix_lambda.jav

10 lines
204 B
Plaintext
Raw Normal View History

2014-06-10 18:23:01 +00:00
import java.util.Vector;
2015-09-29 16:19:32 +00:00
<<<<<<< HEAD
2014-06-10 18:23:01 +00:00
class Matrix extends Vector<Vector<Integer>> {
op = (m) -> (f) -> f.apply(this, m);
2015-09-29 16:19:32 +00:00
=======
2015-09-23 20:17:41 +00:00
class Matrix {
op = (m) -> (f) -> f.apply(m);
2015-09-29 16:19:32 +00:00
>>>>>>> refactoring
2014-06-10 18:23:01 +00:00
}