diff --git a/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/breakpoints/ValidBreakpointLocationLocator.java b/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/breakpoints/ValidBreakpointLocationLocator.java index a27b230f62..57d60b316a 100644 --- a/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/breakpoints/ValidBreakpointLocationLocator.java +++ b/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/breakpoints/ValidBreakpointLocationLocator.java @@ -1070,6 +1070,8 @@ public boolean visit(LambdaExpression node) { body.accept(this); } else if (body instanceof MethodInvocation) { body.accept(this); + } else if (body instanceof ClassInstanceCreation) { + body.accept(this); } } return false;