diff --git a/src/libcore/any.rs b/src/libcore/any.rs index 5511266b4cd22..9f8e3846de9c1 100644 --- a/src/libcore/any.rs +++ b/src/libcore/any.rs @@ -88,7 +88,7 @@ use intrinsics::TypeId; #[stable] pub trait Any: 'static { /// Get the `TypeId` of `self` - #[stable] + #[experimental = "this method will likely be replaced by an associated static"] fn get_type_id(&self) -> TypeId; }