Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gnat.dg
/
inline16_types.ads
blob: dfaf640cb607103dcb136f7a2d1e477d0bdbfec4 [
file
] [
log
] [
blame
]
package
Inline16_Types
with
SPARK_Mode
is
type
NvU8
is
mod
2
**
8
with
Size
=>
8
;
type
NvU32
is
mod
2
**
32
with
Size
=>
32
;
type
Arr_NvU8_Idx32
is
array
(
NvU32
range
<>)
of
NvU8
;
end
Inline16_Types
;