Skip to content

Commit

Permalink
More tests
Browse files Browse the repository at this point in the history
  • Loading branch information
badlogic committed Jul 21, 2015
1 parent 2d1e086 commit 2e0e8dd
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 88 deletions.
21 changes: 0 additions & 21 deletions tests/robovm/src/test/java/org/robovm/rt/lambdas/test004/I.java

This file was deleted.

This file was deleted.

@@ -0,0 +1,17 @@
package org.robovm.rt.lambdas.test004;

import static org.junit.Assert.assertEquals;

import org.junit.Test;

interface I {
int add();
}

public class Test04_Casting {

@Test
public void test004() {
assertEquals(10, ((I)()->10).add());
}
}

This file was deleted.

0 comments on commit 2e0e8dd

Please sign in to comment.