update langref

This commit is contained in:
Andrew Kelley 2018-06-19 12:16:59 -04:00
parent 85422d7aea
commit 0b92d689d0

View File

@ -5688,10 +5688,17 @@ pub const TypeInfo = union(TypeId) {
};
pub const Pointer = struct {
size: Size,
is_const: bool,
is_volatile: bool,
alignment: u32,
child: type,
pub const Size = enum {
One,
Many,
Slice,
};
};
pub const Array = struct {