nridge added a comment.

Function calls are still missing some cases:

  template <typename> void free();
  
  template <typename T>
  struct A {
    template <typename> void mem();
  };
  
  void foo() {
    A<int> a;
    a.mem<int>();  // <--
  }
  
  template<typename T>
  void bar() {
      free<T>();  // <--
  
      A<int> a;
      a.mem<T>();  // <--
  
      A<T> b;
      b.template mem<T>();  // <--
  }


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D139926/new/

https://reviews.llvm.org/D139926

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to