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

Lambda isn't compiled with return statement

    XMLWordPrintable

Details

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

    • b100
    • Verified

    Description

      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

      Attachments

        Issue Links

          Activity

            People

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

              Dates

                Created:
                Updated:
                Resolved: