mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 15:16:08 +00:00

broken because the end location of the parameter was the end location of the default arg, resulting in a source range that could begin in one file and end in another. llvm-svn: 136572
4 lines
38 B
C
4 lines
38 B
C
struct Foo {
|
|
void m(Foo *f = 0);
|
|
};
|