Bug 107803 - [compiler] Warning for infinite recursion in code
Summary: [compiler] Warning for infinite recursion in code
Status: NEW
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 3.1   Edit
Hardware: PC Windows XP
: P3 enhancement (vote)
Target Milestone: ---   Edit
Assignee: JDT-Core-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-08-23 18:25 EDT by Prashant Deva CLA
Modified: 2016-01-14 12:59 EST (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Prashant Deva CLA 2005-08-23 18:25:38 EDT
The compiler should check for and generate a warning when it sees an obvious
infinite recursion in code.
Eg-

void doSomething()
{
    doSomething() ///There should be warning here
}