12 lines
104 B
Plaintext
12 lines
104 B
Plaintext
|
|
// parse-fail
|
||
|
|
|
||
|
|
package foo:foo;
|
||
|
|
|
||
|
|
interface foo {
|
||
|
|
type x = u32;
|
||
|
|
}
|
||
|
|
|
||
|
|
interface bar {
|
||
|
|
use foo.{x, x};
|
||
|
|
}
|