/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/bug191.dir/main.go
17 строк
286 B
Ian Lance Taylor
test: don't rely on order of unrelated imports in bug191
11 дек 2013, 00:05
11 дек 2013, 00:05
6ae3780
Код
Авторство
О чём код?
// Copyright 2009 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package main import . "./a" import . "./b" var _ T var _ V func main() { if A != 1 || B != 2 { panic("wrong vars") } }