mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-20 12:05:48 -04:00
15 lines
449 B
C++
15 lines
449 B
C++
int bar();
|
|
|
|
int foo() {
|
|
return 3;
|
|
}
|
|
|
|
int main() {
|
|
int f = foo() + bar();
|
|
f++;
|
|
return f; //%self.expect("source info", substrs=["Lines found in module ", "main.cpp:10"])
|
|
//%self.expect("source info -f main.cpp -c 10", matching=True, substrs=["main.cpp:10"])
|
|
//%self.expect("source info -f main.cpp -c 1", matching=False, substrs=["main.cpp:10"])
|
|
//%self.expect("source info -f main.cpp -l 10", matching=False, substrs=["main.cpp:7"])
|
|
}
|