We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a9ed380 + 5466c08 commit 31c0c5dCopy full SHA for 31c0c5d
jbmc/src/java_bytecode/lambda_synthesis.cpp
@@ -121,7 +121,9 @@ static optionalt<irep_idt> interface_method_id(
121
<< functional_interface_tag.get_identifier()
122
<< " which should have exactly one abstract method but actually has "
123
<< implemented_interface_type.methods().size()
124
- << ". Note default methods are not supported yet." << messaget::eom;
+ << ". Note default methods are not supported yet."
125
+ << "Also note methods declared in an inherited interface are not "
126
+ << "supported either." << messaget::eom;
127
return {};
128
}
129
return implemented_interface_type.methods().at(0).get_name();
0 commit comments