narrow return type of ClassDescriptor.getConstructors
ClassDescriptor.getConstructors should return Set<ConstructorDesctiptor> instead of Set<FunctionDescriptor>
This commit is contained in:
@@ -675,7 +675,7 @@ public class JetTypeCheckerTest extends JetLiteFixture {
|
||||
});
|
||||
}
|
||||
|
||||
Set<FunctionDescriptor> constructors = Sets.newLinkedHashSet();
|
||||
Set<ConstructorDescriptor> constructors = Sets.newLinkedHashSet();
|
||||
classDescriptor.initialize(
|
||||
!open,
|
||||
typeParameters,
|
||||
|
||||
Reference in New Issue
Block a user