test/langtools/tools/javac/diags/examples/SwitchExpressionEmpty.java
changeset 59021 cfc7bb9a5a92
parent 53878 4584d0331318
equal deleted inserted replaced
59020:aebd72de84b0 59021:cfc7bb9a5a92
    20  * or visit www.oracle.com if you need additional information or have any
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    21  * questions.
    22  */
    22  */
    23 
    23 
    24 // key: compiler.err.switch.expression.empty
    24 // key: compiler.err.switch.expression.empty
    25 // key: compiler.note.preview.filename
       
    26 // key: compiler.note.preview.recompile
       
    27 // options: --enable-preview -source ${jdk.version}
       
    28 
    25 
    29 class BreakOutsideSwitchExpression {
    26 class BreakOutsideSwitchExpression {
    30     String t(E e) {
    27     String t(E e) {
    31         return switch (e) {
    28         return switch (e) {
    32         };
    29         };