All these tests can just call lldbutil.run_to_source_breakpoint instead of reimplementing it.
8 lines
152 B
C++
8 lines
152 B
C++
char8_t a = u8'a';
|
|
const char8_t* ab = u8"你好";
|
|
char8_t abc[9] = u8"你好";
|
|
|
|
int main (int argc, char const *argv[]) {
|
|
return 0; // break here
|
|
}
|