Home
last modified time | relevance | path

Searched defs:IntProxy (Results 1 – 1 of 1) sorted by relevance

/llvm-project/llvm/unittests/ADT/
H A DIteratorTest.cpp63 struct IntProxy { struct
64 int &I;
65 IntProxy(int &I) : I(I) {} in IntProxy() argument
66 void operator=(int NewValue) { I = NewValue; } in operator =()