Make custom bitwise operators work, add tests

This commit is contained in:
Kyle Marek-Spartz
2014-02-16 12:01:40 -06:00
parent 719139a446
commit c43dbe96d3
2 changed files with 13 additions and 2 deletions

View File

@ -0,0 +1,11 @@
class Amp {
& that {
return
}
}
class Pipe {
| that {
return
}
}