15 lines
133 B
Plaintext
15 lines
133 B
Plaintext
// parse-fail
|
|
package foo:foo;
|
|
|
|
interface foo {
|
|
use bar.{y};
|
|
|
|
type x = u32;
|
|
}
|
|
|
|
interface bar {
|
|
use foo.{x};
|
|
|
|
type y = u32;
|
|
}
|