Bug 435028 - [xtend][anonymous][quickfix] Xtend should not propose create constructor quickfix for anonymous type but rather for supertype
Summary: [xtend][anonymous][quickfix] Xtend should not propose create constructor quic...
Status: NEW
Alias: None
Product: Xtend
Classification: Tools
Component: Core (show other bugs)
Version: 2.6.0   Edit
Hardware: PC Mac OS X
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Project Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-05-16 03:50 EDT by Anton Kosyakov CLA
Modified: 2014-05-16 03:50 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 Anton Kosyakov CLA 2014-05-16 03:50:45 EDT
Xtend code:
package test

class Foo {
	def foo() {
		new Bar(true) { // there should be quick fix to create constructor for type Bar instead of anonymous type __Foo_1_
			
		}
	}
}

class Bar {
	
}