repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[mlir][acc] Introduce MappableType interface (#122146)
[llvm-project.git]
/
lldb
/
test
/
API
/
lang
/
cpp
/
operator-overload
/
b.cpp
blob
c0eb29bb79f8e232bcc593c41adb0bcd6bb06a1d
1
class
Tinky
{
2
public
:
3
int
_meh
;
4
Tinky
(
int
meh
) :
_meh
(
meh
) {}
5
};
6
7
int
main
(
void
) {
8
Tinky
x
(
12
);
9
return
0
;
// break here
10
}