Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8016060

Lambda isn't compiled with return statement

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • 8
    • 8
    • tools
    • jdk 8, b92

    • b100
    • Verified

      import javafx.scene.input.MouseEvent;
      import javafx.scene.shape.Rectangle;


      public class Issue {
          public static void main(String[] args) {
              Rectangle r = new Rectangle();
              r.addEventHandler(MouseEvent.MOUSE_CLICKED, t -> {
                  System.out.println("dfdf");
                  if (true) {
                      return;
                  } else {
                      System.out.println("tttt");
                  }
              });

          }
      }
      //output
      Issue.java:11: error: incompatible types: missing return value
                      return;
                      ^
      1 error

            mcimadamore Maurizio Cimadamore
            anazarov Andrey Nazarov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: