https://bugs.llvm.org/show_bug.cgi?id=32428

            Bug ID: 32428
           Summary: Code completion crash with unresolved member expr and
                    explicit base
           Product: clang
           Version: trunk
          Hardware: PC
                OS: All
            Status: NEW
          Severity: enhancement
          Priority: P
         Component: libclang
          Assignee: [email protected]
          Reporter: [email protected]
                CC: [email protected], [email protected]

struct Foo {
  void foo() const;
  static void foo(bool);
};

struct Bar: Foo {
  void foo(bool param) {
this->Foo::foo(/*CC CRASH*/  );// unresolved member expression with an explicit
base
  }
};

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
[email protected]
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to