Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 546806

Summary: Bogus Warning: Unchecked cast from X to X
Product: [Eclipse Project] JDT Reporter: Clovis Seragiotto <clovis.seragiotto>
Component: CoreAssignee: JDT-Core-Inbox <jdt-core-inbox>
Status: CLOSED WONTFIX QA Contact:
Severity: normal    
Priority: P3    
Version: 4.11   
Target Milestone: ---   
Hardware: PC   
OS: Windows 10   
Whiteboard: stalebug

Description Clovis Seragiotto CLA 2019-04-29 03:35:16 EDT
For the last cast in the code below, the compiler warns that there is an "Unchecked cast from Serializable & Supplier<String> to Serializable & Supplier<String>".

import java.util.function.Supplier;

public class Foo {
	static Supplier<String> basic() {
		return () -> "";
	}
	static Supplier<String> foo() {
		return (Supplier<String>)() -> "";
	}
	static Supplier<String> bar() {
		return (Supplier<String> & java.io.Serializable)() -> "";
	}
}
Comment 1 Eclipse Genie CLA 2021-04-19 14:31:06 EDT
This bug hasn't had any activity in quite some time. Maybe the problem got resolved, was a duplicate of something else, or became less pressing for some reason - or maybe it's still relevant but just hasn't been looked at yet.

If you have further information on the current state of the bug, please add it. The information can be, for example, that the problem still occurs, that you still want the feature, that more information is needed, or that the bug is (for whatever reason) no longer relevant.

--
The automated Eclipse Genie.
Comment 2 Clovis Seragiotto CLA 2021-04-20 03:12:29 EDT
The problem still occurs (javac has no problem with the code, by the way).
Comment 3 Eclipse Genie CLA 2023-04-25 20:25:28 EDT
This bug hasn't had any activity in quite some time. Maybe the problem got resolved, was a duplicate of something else, or became less pressing for some reason - or maybe it's still relevant but just hasn't been looked at yet.

If you have further information on the current state of the bug, please add it. The information can be, for example, that the problem still occurs, that you still want the feature, that more information is needed, or that the bug is (for whatever reason) no longer relevant.

--
The automated Eclipse Genie.
Comment 4 Clovis Seragiotto CLA 2023-04-26 03:25:10 EDT
The problem still occurs.