removed bogus test case for KT-2355 which isn't an issue any more

This commit is contained in:
James Strachan
2012-07-05 12:07:36 +01:00
parent 20da5c48ea
commit af4cdb38df
2 changed files with 0 additions and 19 deletions
@@ -22,10 +22,6 @@ public final class StringTemplatesTest extends AbstractExpressionTest {
super("stringTemplates/");
}
public void TODO_testObjectWithExtensionToString() throws Exception {
fooBoxIsValue("a = abcX, b = defX");
}
public void testObjectWithToString() throws Exception {
fooBoxIsValue("a = abcS, b = defS");
}
@@ -1,15 +0,0 @@
package foo
class Foo(val name: String) {
}
public fun Foo.toString(): String {
return name + "X"
}
fun box(): String {
val a = Foo("abc")
val b = Foo("def")
val message = "a = $a, b = $b"
return message
}