Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Frama Clang
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Stefan Gränitz
Frama Clang
4f3c6b953ce4a9e0b7035599cc59813a3936548a
frama-clang
tests
basic
lambda.cpp
Find file
Normal view
Permalink
lambda.cpp
88 B
Newer
Older
Start of public Frama-Clang history
Virgile Prevosto
committed
3 years ago
1
2
3
4
5
6
int
main
()
{
int
x
=
3
;
auto
lam
=
[
&
]
(
int
y
)
{
x
+=
y
;
};
lam
(
1
);
return
x
;
};