File: Bug573589.java

package info (click to toggle)
eclipse-jdt-debug 4.30-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 18,876 kB
  • sloc: java: 234,390; xml: 6,367; makefile: 5
file content (11 lines) | stat: -rw-r--r-- 219 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
import static java.lang.Math.max;

import java.util.stream.Stream;

public class Bug573589 {

	public static void main(String[] args) {
		max(10, 11);
		Stream.of(1,2,3).filter(i -> i > 2).map(i -> i * 2).count();
	}
}