Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions clang/test/CXX/drs/cwg1xx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1347,6 +1347,14 @@ namespace cwg191 { // cwg191: yes
}
}

namespace cwg192 { // cwg192: 2.7
struct S {
void f(I i) { }
// expected-error@-1 {{unknown type name 'I'}}
typedef int I;
};
} // namespace cwg192

// cwg193 is in cwg193.cpp

namespace cwg194 { // cwg194: yes
Expand Down
2 changes: 1 addition & 1 deletion clang/www/cxx_dr_status.html
Original file line number Diff line number Diff line change
Expand Up @@ -1197,7 +1197,7 @@ <h2 id="cxxdr">C++ defect report implementation status</h2>
<td><a href="https://cplusplus.github.io/CWG/issues/192.html">192</a></td>
<td>NAD</td>
<td>Name lookup in parameters</td>
<td class="unknown" align="center">Unknown</td>
<td class="full" align="center">Clang 2.7</td>
</tr>
<tr id="193">
<td><a href="https://cplusplus.github.io/CWG/issues/193.html">193</a></td>
Expand Down
Loading