/*
* Copyright (c) Huawei Technologies Co., Ltd. 2025. All rights reserved.
* This source file is part of the Cangjie project, licensed under Apache-2.0
* with Runtime Library Exception.
*
* See https://cangjie-lang.cn/pages/LICENSE for license information.
*/
// LEVEL: 0
// EXEC: %compiler %cmp_opt %f -o %output
// RUN-EXEC: %run %run_opt %output %run_args
import std.collection.*
var setOne: HashSet<Int64> = HashSet<Int64>([1, 2, 3, 3])
main(): Int64 {
if (setOne.contains(1) && setOne.contains(2) && setOne.contains(3)) {
return 0
}
return 1
}