Bug 435054 - [inner classes] Instantiating an inner class without enclosing instance should not be possible
Summary: [inner classes] Instantiating an inner class without enclosing instance shoul...
Status: NEW
Alias: None
Product: Xtend
Classification: Tools
Component: Core (show other bugs)
Version: 2.6.0   Edit
Hardware: PC Windows 7
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Project Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-05-16 08:27 EDT by Stefan Oehme CLA
Modified: 2014-05-16 08:27 EDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Stefan Oehme CLA 2014-05-16 08:27:20 EDT
public class Outer {
  public class Inner {}
}

class Client  {
  Outer.Inner foo = new Outer.Inner();
}

Should not be possible.