Issue |
137111
|
Summary |
enhancing the non-template completion experience with type holes
|
Labels |
new issue
|
Assignees |
|
Reporter |
illusory0x0
|
It looks better than before.


```C++
struct Hole {
template<typename T>
operator T() const noexcept {
return std::declval<T>();
}
};
auto $hole = Hole{};
struct X {
X foo(int x, int y) {
return $hole;
}
};
```
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs