diff options
| author | Boris Kolpackov <boris@codesynthesis.com> | 2012-05-11 10:40:02 +0200 |
|---|---|---|
| committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-05-11 10:40:02 +0200 |
| commit | 8062e4e9a4998cfa44002afd2435ff9083e092e8 (patch) | |
| tree | 3c3a53c0f7e03309a1a83896bd01e90348ec741f /tests | |
| parent | 0a1c72f32cd709972d6e4e5591dfd05d91edc8e1 (diff) | |
| download | cli-8062e4e9a4998cfa44002afd2435ff9083e092e8.tar.gz cli-8062e4e9a4998cfa44002afd2435ff9083e092e8.tar.xz cli-8062e4e9a4998cfa44002afd2435ff9083e092e8.zip | |
Fix lookup bug
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/parser/test-007.cli | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/parser/test-007.cli b/tests/parser/test-007.cli index 3e5ca7f..b890a34 100644 --- a/tests/parser/test-007.cli +++ b/tests/parser/test-007.cli @@ -19,9 +19,10 @@ namespace n1 namespace i1 { - class c10: c4 {}; // Outer scope. - class c11: b3 {}; // From included. - class c12: b2 {}; // Outer scope from included. + class c10: c4 {}; // Outer scope. + class c11: b3 {}; // From included. + class c12: b2 {}; // Outer scope from included. + class c4: n1::c4 {}; // Qualified name from outer scope. } } |
