-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote branch 'origin/master' into edge
- Loading branch information
Showing
3 changed files
with
916 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
project Case_Support is | ||
A := ""; | ||
case A is | ||
when "a" => | ||
B := ""; | ||
when others => | ||
C := ""; | ||
case A is | ||
when "a" => | ||
D := ""; | ||
when others => | ||
E := ""; | ||
end case; | ||
F := ""; | ||
end case; | ||
G := ""; | ||
case G is | ||
when "" => | ||
H := ""; | ||
-- testing auto case/when closing on package declaration | ||
package Compiler is | ||
I := ""; | ||
case H is | ||
when "" => | ||
J := ""; | ||
case J is | ||
-- testing auto case closing on package declaration | ||
package Linker is | ||
K := ""; | ||
-- testing package auto closing on package declaration | ||
package Builder is | ||
L := ""; | ||
-- testing package auto closing on type declaration | ||
type T1 is ("a"); | ||
M := ""; | ||
case M is | ||
when "" => | ||
N := ""; | ||
-- testing case auto closing on type declaration | ||
type T2 is (""); | ||
O := ""; | ||
end Case_Support; |
Oops, something went wrong.