Skip to content

Commit

Permalink
Merge pull request #7586 from LakshanWeerasinghe/u8-breaking-changes
Browse files Browse the repository at this point in the history
[Update 8] - Add breaking changes details for u8 release note
  • Loading branch information
pcnfernando authored Aug 29, 2023
2 parents 5034792 + 60e2bb2 commit 45b6b36
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,14 @@ If you have not installed Ballerina, download the [installers](/downloads/#swanl

- Ballerina interoperability implementation may have an impact with the Java 17 support due to any incompatible changes. For example, Java 17 has some restrictions on using Java reflections with internal Java packages. For more information, see the Java 17 release notes.

- A bug related to deciding the types of numeric literals has been fixed.

```ballerina
2f|1 a = 2; // Compilation error now, `2` is considered to be `int`.
3d|6 b = 3; // Compilation error now, `3` is considered to be `int`.
3d|4f|6 b = 4; // Compilation error now, `4` is considered to be `int`.
```

## Platform updates

### New features
Expand Down

0 comments on commit 45b6b36

Please sign in to comment.