Highlight change in traits4 solution

This commit is contained in:
mo8it 2024-06-27 12:29:35 +02:00
parent 45cfe86fb0
commit c170740423

View file

@ -11,6 +11,7 @@ impl Licensed for SomeSoftware {}
impl Licensed for OtherSoftware {} impl Licensed for OtherSoftware {}
fn compare_license_types(software1: impl Licensed, software2: impl Licensed) -> bool { fn compare_license_types(software1: impl Licensed, software2: impl Licensed) -> bool {
// ^^^^^^^^^^^^^ ^^^^^^^^^^^^^
software1.licensing_info() == software2.licensing_info() software1.licensing_info() == software2.licensing_info()
} }