diff options
| author | bors <bors@rust-lang.org> | 2014-11-24 02:56:35 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-11-24 02:56:35 +0000 |
| commit | c637cab85323c97be37d0c12bfa0fc0e9ea2c367 (patch) | |
| tree | dac114af0067478c932a5028807f5cd00e42d0aa | |
| parent | 395901393c369c910a8ae36ace71402cb206d217 (diff) | |
| parent | 4705475be2748b07144c02a5bfc5d355f9496482 (diff) | |
| download | rust-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.rs | 2 |
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; } |
