mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-20 20:15:49 -04:00

Reviewers: a.sidorin, martong Reviewed By: martong Subscribers: rnkovacs, martong, cfe-commits Differential Revision: https://reviews.llvm.org/D50792 llvm-svn: 339919
8 lines
59 B
C++
8 lines
59 B
C++
struct S {
|
|
int i;
|
|
};
|
|
|
|
int S::*iptr() {
|
|
return &S::i;
|
|
}
|