Comments only: annotate FIXMEs

This commit is contained in:
Tim Chevalier 2012-06-14 18:18:43 -07:00
parent af60716281
commit 7441a90fd9

View File

@ -1,8 +1,8 @@
#[doc="An interface for numbers."]
iface num {
// FIXME: Cross-crate overloading doesn't work yet.
// FIXME: Interface inheritance.
// FIXME: Cross-crate overloading doesn't work yet. (#2615)
// FIXME: Interface inheritance. (#2616)
fn add(&&other: self) -> self;
fn sub(&&other: self) -> self;
fn mul(&&other: self) -> self;