|
From: SourceForge.net <no...@so...> - 2008-01-30 19:12:52
|
Bugs item #1882895, was opened at 2008-01-30 11:12 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=1882895&group_id=44253 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Compiler integration Group: 4: Serious Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: compiler gagged on GCD example Initial Comment: Here's the code: class TestGCD { public static void main(String[] args) { System.out.println( gcd(1,2) ); } public static int gcd(int x, int y) { int output = 0; if(y == 0) { output = x; } else { output = gcd(y, x%y); } return output; } } ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=1882895&group_id=44253 |