[clang] Fix implicit integer conversion for opaque enums declared in class templates...
[llvm-project.git] / lldb / test / API / commands / command / script_alias / tcsacmd.py
blob00d4dbc5585c94c69d3e4bd721852ecd44b5b6fb
1 import lldb
4 def some_command_here(debugger, command, result, d):
5 if command == "a":
6 print("Victory is mine", file=result)
7 return True
8 else:
9 print("Sadness for all", file=result)
10 return False