From af1041731c8c0ce1846ff7e7b6052ed7327a5dbc Mon Sep 17 00:00:00 2001 From: jeff Date: Mon, 9 Feb 2015 22:23:45 -0500 Subject: fix translation issues, particularly with fields --- test/cuchaz/enigma/inputs/translation/A_Basic.java | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 test/cuchaz/enigma/inputs/translation/A_Basic.java (limited to 'test/cuchaz/enigma/inputs/translation/A_Basic.java') diff --git a/test/cuchaz/enigma/inputs/translation/A_Basic.java b/test/cuchaz/enigma/inputs/translation/A_Basic.java new file mode 100644 index 0000000..8930763 --- /dev/null +++ b/test/cuchaz/enigma/inputs/translation/A_Basic.java @@ -0,0 +1,22 @@ +package cuchaz.enigma.inputs.translation; + +public class A_Basic { + + public int one; + public float two; + public String three; + + public void m1() { + } + + public int m2() { + return 42; + } + + public void m3(int a1) { + } + + public int m4(int a1) { + return 5; // chosen by fair die roll, guaranteed to be random + } +} -- cgit v1.2.3