THIS GIST WAS MOVED TO TERMSTANDARD/COLORS
REPOSITORY.
PLEASE ASK YOUR QUESTIONS OR ADD ANY SUGGESTIONS AS A REPOSITORY ISSUES OR PULL REQUESTS INSTEAD!
#!/bin/sh | |
### | |
# SOME COMMANDS WILL NOT WORK ON macOS (Sierra or newer) | |
# For Sierra or newer, see https://github.com/mathiasbynens/dotfiles/blob/master/.macos | |
### | |
# Alot of these configs have been taken from the various places | |
# on the web, most from here | |
# https://github.com/mathiasbynens/dotfiles/blob/5b3c8418ed42d93af2e647dc9d122f25cc034871/.osx |
THIS GIST WAS MOVED TO TERMSTANDARD/COLORS
REPOSITORY.
PLEASE ASK YOUR QUESTIONS OR ADD ANY SUGGESTIONS AS A REPOSITORY ISSUES OR PULL REQUESTS INSTEAD!
// class version 52.0 (52) | |
// access flags 0x21 | |
public class A { | |
// compiled from: A.java | |
// access flags 0x9 | |
public static INNERCLASS A$K A K | |
// access flags 0x609 | |
public static abstract INNERCLASS A$I2 A I2 | |
// access flags 0x609 |
public class Test { | |
interface I { default void m1() {} } | |
interface A1 extends I { default void a1() {} } | |
interface A2 extends I { default void a2() {} } | |
static class A3 implements A1, A2 {} | |
interface B1 extends A1, A2 { default void b1() {} } | |
interface B2 extends A1, A2 { default void b2() {} } | |
static class B3 extends A3 implements B1, B2 {} | |
interface C1 extends B1, B2 { default void c1() {} } | |
interface C2 extends B1, B2 { default void c2() {} } |