Make Kind "extensible"

This commit is contained in:
Steven Fackler 2015-12-27 13:40:28 -07:00
parent d3a4091d4b
commit 1188eb108a

View File

@ -102,6 +102,8 @@ pub enum Kind {
Array(Type), Array(Type),
/// A range type along with the type of its elements. /// A range type along with the type of its elements.
Range(Type), Range(Type),
#[doc(hidden)]
__PseudoPrivateForExtensibility,
} }
macro_rules! as_pat { macro_rules! as_pat {