def check_isolation_with_named_and_positionals(a,
                                               b=4,
                                               list_1=Isolated(),
                                               *args,
                                               c="some",
                                               list_2=Isolated(),
                                               d=100):
    list_1[0] = -10
    list_2[0] = 100
 def check_isolation(*, x=Isolated()):
     pass
 def check_isolation(*, input_set=Isolated()):
     input_set |= {-10}
     return input_set
 def check_isolation(input_dict=Isolated()):
     input_dict["a"] = "B"
 def check_isolation(*, input_list=Isolated()):
     input_list[0] = -10
 def check_evaluation(*, x=Evaluated(Isolated())):
     return x