-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix variable used in switch head not being inlined
- Loading branch information
Showing
2 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,28 @@ | ||
package pkg; | ||
|
||
import java.util.function.Supplier; | ||
|
||
public class TestSwitchPatternMatchingJ21 { | ||
public void test1(Object o) { | ||
System.out.println(switch (o) { | ||
case Integer i -> Integer.toString(i); | ||
case null, default -> "null"; | ||
}); | ||
} | ||
|
||
public String test2(Object o) { | ||
return switch (o) { | ||
case Integer i -> Integer.toString(i); | ||
case String s -> s; | ||
default -> "null"; | ||
}; | ||
} | ||
|
||
public String test3(Supplier<Object> o) { | ||
return switch (o.get()) { | ||
case Integer i -> Integer.toString(i); | ||
case String s -> s; | ||
default -> "null"; | ||
}; | ||
} | ||
} |