| 31 | |
| 32 | template <typename T> |
| 33 | bool foo2() { |
| 34 | std::vector<T> vec; |
| 35 | //vec._M_impl; // 'vec' is identified as part of 'CXXDependentScopeMemberExpr' but access to member field '_M_impl' is not and it's completely missing from the AST |
| 36 | return vec.empty(); // 'vec' is identified as part of 'CXXDependentScopeMemberExpr' but call expression 'empty' is not and it's completely missing from the AST |
| 37 | } |
| 38 | |
| 39 | bool bar() { |
| 40 | std::vector<int> vec; |