1 /*
2 * @test /nodynamiccopyright/
3 * @bug 8334258
4 * @summary Disallow early assignment if FLEXIBLE_CONSTRUCTORS preview feature is not enabled
5 * @compile/fail/ref=EarlyAssignmentNoPreview2.out -source 24 -XDrawDiagnostics EarlyAssignmentNoPreview2.java
6 */
7 public class EarlyAssignmentNoPreview2 {
8
9 Runnable r;
10
11 public EarlyAssignmentNoPreview2() {
12 this.r = () -> System.out.println("hello");
13 this(this.r);
14 }
15
16 public EarlyAssignmentNoPreview2(Runnable r) {
17 }
18 }