File: Bug578145LambdaInConstructor.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 (20 lines) | stat: -rw-r--r-- 522 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import java.util.Arrays;
import java.util.List;

public class Bug578145LambdaInConstructor {
	List<String> names;

	public Bug578145LambdaInConstructor(List<String> originalNames) {
		this.names = originalNames;
		int localInConstructor = 1;

		this.names.stream().forEach((name) -> {
			int localInLambda = 10;
			System.out.println(name); // Add breakpoint here
		});
	}

	public static void main(String[] args) {
		Bug578145LambdaInConstructor instance = new Bug578145LambdaInConstructor(Arrays.asList("Lambda"));
	}
}