Remove 'implements' keyword in favour of :, part of #2301.
This commit is contained in:
parent
3ed8561dea
commit
f60cdf27e7
17 changed files with 21 additions and 20 deletions
|
@ -3,7 +3,7 @@ iface animal {
|
|||
fn eat();
|
||||
}
|
||||
|
||||
class cat implements animal {
|
||||
class cat : animal {
|
||||
let meows: uint;
|
||||
new(in_x : uint) { self.meows = in_x; }
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue