With this program:
int main()
{
const int a = 0;
return 0;
}
And this expression:
(lldb) p a=10
˄
╰─ error: cannot assign to variable 'a' with const-qualified type 'const int &'
note: note: variable 'a' declared const here
LLDB prints "note: " then "note: " again.
Also, "here" seems like it would be accompanied by some location but is not.