Rémy Oudompheng | 46bce2a | 2012-10-07 23:22:01 +0200 | [diff] [blame] | 1 | // rundir |
Russ Cox | cd22afa | 2012-09-23 13:16:14 -0400 | [diff] [blame] | 2 | |
Robert Griesemer | 69015b6 | 2012-02-27 18:52:40 -0800 | [diff] [blame] | 3 | // Copyright 2012 The Go Authors. All rights reserved. |
| 4 | // Use of this source code is governed by a BSD-style |
| 5 | // license that can be found in the LICENSE file. |
| 6 | |
| 7 | // Tests that method calls through an interface always |
Russ Cox | 08854b0 | 2012-03-07 10:21:56 -0500 | [diff] [blame] | 8 | // call the locally defined method localT.m independent |
Robert Griesemer | 69015b6 | 2012-02-27 18:52:40 -0800 | [diff] [blame] | 9 | // at which embedding level it is and in which order |
| 10 | // embedding is done. |
| 11 | |
Rémy Oudompheng | 46bce2a | 2012-10-07 23:22:01 +0200 | [diff] [blame] | 12 | package ignored |
Robert Griesemer | 69015b6 | 2012-02-27 18:52:40 -0800 | [diff] [blame] | 13 | |