about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-11-24 02:56:35 +0000
committerbors <bors@rust-lang.org>2014-11-24 02:56:35 +0000
commitc637cab85323c97be37d0c12bfa0fc0e9ea2c367 (patch)
treedac114af0067478c932a5028807f5cd00e42d0aa
parent395901393c369c910a8ae36ace71402cb206d217 (diff)
parent4705475be2748b07144c02a5bfc5d355f9496482 (diff)
downloadrust-c637cab85323c97be37d0c12bfa0fc0e9ea2c367.tar.gz
rust-c637cab85323c97be37d0c12bfa0fc0e9ea2c367.zip
auto merge of #19223 : reem/rust/any-typeid-unstable, r=aturon
It is likely going to be removed and replaced
with an associated static.
-rw-r--r--src/libcore/any.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/any.rs b/src/libcore/any.rs
index ebd6fab34e9..5d1f996831e 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;
 }