[llvm-bugs] [Bug 32428] New: Code completion crash with unresolved member expr and explicit base

via llvm-bugs llvm-bugs at lists.llvm.org
Mon Mar 27 05:29:22 PDT 2017


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: unassignedclangbugs at nondot.org
          Reporter: Erik.Verbruggen at Me.com
                CC: klimek at google.com, llvm-bugs at lists.llvm.org

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.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20170327/b2d09f51/attachment.html>


More information about the llvm-bugs mailing list