mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
9cd6a08245
than -c. llvm-svn: 120157
13 lines
279 B
Ada
13 lines
279 B
Ada
-- RUN: %llvmgcc -S %s
|
|
package Non_Bitfield is
|
|
type SP is access String;
|
|
type E is (A, B, C);
|
|
type T (D : E) is record
|
|
case D is
|
|
when A => X : Boolean;
|
|
when B => Y : SP;
|
|
when C => Z : String (1 .. 2);
|
|
end case;
|
|
end record;
|
|
end;
|