Issue 169314
Summary [ADT] Conversion from ArrayRef<S:T> to ArrayRef<T> does not work
Labels new issue
Assignees
Reporter tgymnich
    Conversion of an `ArrayRef` of some class to an `ArrayRef` of the base class of that class does not work.

### Example 
```c++
ArrayRef<mlir::StringAttr> x;
ArrayRef<mlir::Attribute> y(x);
```
_______________________________________________
llvm-bugs mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to