remove trailing comment

This commit is contained in:
Ashley Mannix
2021-08-05 11:07:15 +10:00
parent 35f15f8b51
commit af689a5a39
+1 -1
View File
@@ -1205,7 +1205,7 @@ mod tests {
#[test]
fn test_set_ops_const() {
// These just test that these compile and don't cause use-site panics
// (would be possible if we had some sort of UB), which is enoug
// (would be possible if we had some sort of UB)
const INTERSECT: Flags = Flags::all().intersection(Flags::C);
const UNION: Flags = Flags::A.union(Flags::C);
const DIFFERENCE: Flags = Flags::all().difference(Flags::A);