Ticket #294: testgraph.cc
File testgraph.cc, 303 bytes (added by , 15 years ago) |
---|
Line | |
---|---|
1 | #include <lemon/list_graph.h> |
2 | |
3 | #include <boost/concept_check.hpp> |
4 | #include <lemon/concept_check.h> |
5 | |
6 | namespace boost { |
7 | void f() { |
8 | lemon::ListGraph g; // any class in lemon namespace |
9 | ignore_unused_variable_warning(g); |
10 | } |
11 | |
12 | } // namespace boost |
13 | |
14 | int main(int argc, char **argv) { |
15 | return 0; |
16 | } |